{ "info": { "author": "Wei OUYANG", "author_email": "oeway007@gmail.com", "bugtrack_url": null, "classifiers": [], "description": "![ENGINE_VERSION](https://img.shields.io/badge/dynamic/json.svg?color=success&label=imjoy%20engine&prefix=v&query=version&url=https%3A%2F%2Fraw.githubusercontent.com%2Foeway%2FImJoy-Engine%2Fmaster%2Fimjoy%2FVERSION) ![API_VERSION](https://img.shields.io/badge/dynamic/json.svg?color=success&label=api%20version&prefix=v&query=api_version&url=https%3A%2F%2Fraw.githubusercontent.com%2Foeway%2FImJoy-Engine%2Fmaster%2Fimjoy%2FVERSION) ![PyPI](https://img.shields.io/pypi/v/imjoy.svg?style=popout) ![GitHub](https://img.shields.io/github/license/oeway/ImJoy-Engine.svg) [![Build Status](https://travis-ci.com/oeway/ImJoy-Engine.svg?branch=master)](https://travis-ci.com/oeway/ImJoy-Engine) [![ImJoy Version](https://img.shields.io/badge/dynamic/json.svg?color=success&label=imjoy&prefix=v&query=version&url=https://raw.githubusercontent.com/oeway/ImJoy/master/web/package.json)](https://imjoy.io/#/app)\n# ImJoy Plugin Engine\nThe plugin engine used for running python plugins in ImJoy (https://imjoy.io).\n\n## Installation (Desktop App)\n\nIf you want to use the plugin engine from a desktop environment, download the latest ImJoy-App from [here](https://github.com/oeway/ImJoy-App/releases). Follow the instructions according to different operating systems.\n\nYou will get an executable file for starting the Plugin Engine.\n\n## Installation (Linux servers/clusters)\n\nFor using it through a command line interface on a Linux host, run this command in your terminal to install the plugin engine:\n```bash\nwget https://raw.githubusercontent.com/oeway/ImJoy-Engine/master/utils/Linux_Install.sh -O - | bash\n```\n\nNOTE: When you run the script above, it will first download and install Miniconda3 into `$HOME/ImJoyApp`, it may take considerably amount of space. If you want to uninstall it, run `rm -rf $HOME/ImJoyApp`. \n\nTo start the plugin engine, run:\n```\nexport PATH=~/ImJoyApp/bin:$PATH\nimjoy --host=0.0.0.0 --port=9527 --serve\n```\n\nPlease notice that if you are trying to use ImJoy Plugin Engine running on a remote server, please use the ImJoy web App served on your server (`http://YOUR_REMOTE_IP:9527`) instead of `https://imjoy.io`. This is because most browser do not allow a web application served throught `https` to connect to a unsecured server (your remote server). Alternatively, you use proxy to enable `https` for the plugin engine, then you will be able to use it with `https://imjoy.io`.\n\n\n## Manual Installation\n If you are in the following situation:\n 1) already have a conda environemnt (Anaconda 3 or Miniconda 3)\n 1) want better control over the installation process\n 2) having trouble with the installation above\n\n Please follow the manual installation method below:\n\n * If you don't have a conda environemnt, download and install [Miniconda with Python 3.7](https://conda.io/miniconda.html) (or [Anaconda with Python 3.7](https://www.anaconda.com/download/) if you prefer a full installation).\n\n * Start a **Terminal**(Mac and Linux) or **Anaconda Prompt**(Windows), then run the following command:\n\n ```\n conda -V && pip install -U imjoy\n ```\n\n * If you encountered any error related to `git` or `pip`, try to run : `conda install -y git pip` before the above command. (Otherwise, please check **FAQs**.)\n\n To use it after the installation:\n * Run `imjoy` command in a **Terminal** or **Anaconda Prompt**, and keep the window running.\n\n * Go to https://imjoy.io, connect to the plugin engine. For the first time, you will be asked to fill a token generated by the plugin engine from the previous step. Once connected, you can start to run python plugin through the plugin engine.\n\n## Upgrading\n\nNormally, the Plugin Engine will upgrade itself when it starts.\nIn case you have problem with starting or upgrading the App, try to manually upgrade it by running the following command in a **Terminal**(Mac and Linux) or **Anaconda Prompt**(Windows):\n```\nPATH=~/ImJoyApp/bin:$PATH pip install -U imjoy\n```\n\n## Accessing the ImJoy Engine Conda environment\nIf you installed the Plugin Engine with the [ImJoyEngine](https://github.com/oeway/ImJoy-Engine/releases), it will setup an Miniconda environment located in `~/ImJoyApp`.\n\nTo access the environment on Linux and Mac, you just need to add `~/ImJoyApp/bin` to your `$PATH`:\n```\nexport PATH=~/ImJoyApp/bin:$PATH\n\n# now you can use command such as `imjoy`, `conda`, `pip`, `python` provided from ~/ImJoyApp\nimjoy\n\n```\nFor windows, you can use powershell to add the ImJoyApp to `$env.Path`:\n```\n$env:Path = '%systemdrive%%homepath%\\ImJoyApp;%systemdrive%%homepath%\\ImJoyApp\\Library\\bin;%systemdrive%%homepath%\\ImJoyApp\\Scripts;' + $env:Path;\n\n# now you can use command such as `imjoy`, `conda`, `pip`, `python` provided from ~/ImJoyApp\nimjoy\n```\n\n## Uninstall/remove ImJoy Engine\nIn order to uninstall or remove ImJoy Engine, you need to remove two folders located in your home/user folder: `ImJoyApp` and `ImJoyWorkspace`.\n\n * `ImJoyApp` contains a Miniconda environemnt and the virtual environemtns used for running ImJoy plugins\n * `ImJoyWorkspace` contains user data for each ImJoy workspace, you may want to backup the data.\n\nOn Linux/OSX, you can run the following command:\n```\nrm -rf $HOME/ImJoyApp \nrm -rf $HOME/ImJoyWorkspace # please backup important data inside this folder\n```\nOn windows, it's typically located in `C:\\Users\\`, you can remove `ImJoyApp` and `ImJoyWorkspace` manually.\n\n## More details and FAQs in [Docs](https://imjoy.io/docs/#/user_manual)\n\n# Roadmap\nYou can track the progress of the project here: https://github.com/oeway/ImJoy/projects/2\n\n# Bug report and feature request\n\nPlease submit your issue to [ImJoy/issues ](https://github.com/oeway/ImJoy/issues)\n\n## Development\n\n- Development requires Python 3.6, since we use [`black`](https://github.com/ambv/black) for code formatting.\n\n```\n git clone git@github.com:oeway/ImJoy-Engine.git\n # Enter directory.\n cd ImJoy-Engine\n # Install all development requirements and package in development mode.\n pip3 install -r requirements_dev.txt\n```\n\n- Run `tox` to run all tests and lint, including checking that `black` doesn't change any files.\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": "http://github.com/oeway/ImJoy-Engine", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "imjoy", "package_url": "https://pypi.org/project/imjoy/", "platform": "", "project_url": "https://pypi.org/project/imjoy/", "project_urls": { "Homepage": "http://github.com/oeway/ImJoy-Engine" }, "release_url": "https://pypi.org/project/imjoy/0.8.22/", "requires_dist": [ "python-engineio (==3.8.2)", "python-socketio[client] (==4.1.0)", "numpy", "pathlib ; python_version < \"3.4\"", "janus ; python_version > \"3.3\"", "aiohttp ; extra == 'engine'", "aiohttp-cors ; extra == 'engine'", "gputil ; extra == 'engine'", "pyyaml ; extra == 'engine'" ], "requires_python": "", "summary": "ImJoy Plugin Engine for running Python plugins locally or remotely from ImJoy.io", "version": "0.8.22" }, "last_serial": 5663503, "releases": { "0.7.20": [ { "comment_text": "", "digests": { "md5": "e8a348230f197fe633446610ed665084", "sha256": "7222a024347e081d0c64495bc7de53a44879cbe49ec01e75d8495009993b7b93" }, "downloads": -1, "filename": "imjoy-0.7.20-py3-none-any.whl", "has_sig": false, "md5_digest": "e8a348230f197fe633446610ed665084", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 38380, "upload_time": "2019-02-02T12:47:47", "url": "https://files.pythonhosted.org/packages/94/bd/9e8e1235d85b1b0a48dd4559619b8a0e51f103fb80e447d2cfb9bcf13d87/imjoy-0.7.20-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "46120c272d540d89719cd9fa11bd7121", "sha256": "f341dd6a1792cdef63fd146805d36288c0411a85faaeb7115b0d279fee75348d" }, "downloads": -1, "filename": "imjoy-0.7.20.tar.gz", "has_sig": false, "md5_digest": "46120c272d540d89719cd9fa11bd7121", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33579, "upload_time": "2019-02-02T12:47:49", "url": "https://files.pythonhosted.org/packages/54/8e/75265e097bb9dde850b9d62d90781ad9119ed07cd5be5d9cdb5beadc92e8/imjoy-0.7.20.tar.gz" } ], "0.7.22": [ { "comment_text": "", "digests": { "md5": "d924a20836093577b885ef8ed2527e38", "sha256": "8f813ca32466a8f38240c72d8e6f986a71304bf6eeca275223c6a241a96f5cfd" }, "downloads": -1, "filename": "imjoy-0.7.22-py3-none-any.whl", "has_sig": false, "md5_digest": "d924a20836093577b885ef8ed2527e38", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 38365, "upload_time": "2019-02-02T19:37:27", "url": "https://files.pythonhosted.org/packages/9c/49/9713fd78e92982a0f74969dd0f2b8ad1e5e09ba5f9dda00ec7e851562be6/imjoy-0.7.22-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8f0f27f2abdadf9a68bcb019c8ba1a0e", "sha256": "cb9e30f40c442f68f96d13a54d2372e485ed82b96248466d8224e9dd441d029d" }, "downloads": -1, "filename": "imjoy-0.7.22.tar.gz", "has_sig": false, "md5_digest": "8f0f27f2abdadf9a68bcb019c8ba1a0e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33581, "upload_time": "2019-02-02T19:37:28", "url": "https://files.pythonhosted.org/packages/e5/b1/162442998e1c6bdaa64d7c69018e5b3265f3ef4d66078bca28944fb0b88d/imjoy-0.7.22.tar.gz" } ], "0.7.24": [ { "comment_text": "", "digests": { "md5": "c2e9e49fa302207ab865fb441f8437b4", "sha256": "7cdff1a2712b879eb1e3230569be5871f2a9c6d78333775d763b5a1050c5b3f1" }, "downloads": -1, "filename": "imjoy-0.7.24-py3-none-any.whl", "has_sig": false, "md5_digest": "c2e9e49fa302207ab865fb441f8437b4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 40399, "upload_time": "2019-02-08T21:14:29", "url": "https://files.pythonhosted.org/packages/e6/84/fb40d283f4635636a42abfc2cba80cbe86c03b55e5201a6cd1d50a99d320/imjoy-0.7.24-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b18d83e4305e403ef6572e19aa514dd5", "sha256": "57e9d4825b8d5ac62f5930d818c94018cc184bb40ae9bcd9ee2594006cb36be9" }, "downloads": -1, "filename": "imjoy-0.7.24.tar.gz", "has_sig": false, "md5_digest": "b18d83e4305e403ef6572e19aa514dd5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34811, "upload_time": "2019-02-08T21:14:35", "url": "https://files.pythonhosted.org/packages/b9/3a/229424bb5a9db7ab6aec66234aaeab3b679f2ae040c528bf0015fb625dbb/imjoy-0.7.24.tar.gz" } ], "0.7.25": [ { "comment_text": "", "digests": { "md5": "deac3d08170ba7eb4aab6caff061abe1", "sha256": "9e952fac227fa25ae7ec43727338226bf8b7253a8c5fa9122fc2686f3699059f" }, "downloads": -1, "filename": "imjoy-0.7.25-py3-none-any.whl", "has_sig": false, "md5_digest": "deac3d08170ba7eb4aab6caff061abe1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 40395, "upload_time": "2019-02-08T21:44:12", "url": "https://files.pythonhosted.org/packages/dc/e9/5f29a55e98b262ac0b55f45000776cbad9dcf0bc8c8bd78cab2cea22525f/imjoy-0.7.25-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ca24535713642b3d12e447d1a3702313", "sha256": "55fc3cd242beb3934da5db734bdb98ce9d0f31569a9f563f28bf2176055f5236" }, "downloads": -1, "filename": "imjoy-0.7.25.tar.gz", "has_sig": false, "md5_digest": "ca24535713642b3d12e447d1a3702313", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34826, "upload_time": "2019-02-08T21:44:32", "url": "https://files.pythonhosted.org/packages/7a/0f/f6f5cfeb73e7315378476060582b3f7252f4074d9ec9c41bb5994cd0f7ab/imjoy-0.7.25.tar.gz" } ], "0.7.26": [ { "comment_text": "", "digests": { "md5": "0b2fc5285cf81bdcd7c17c9abcbf9bce", "sha256": "9af670f63bb6ea29d61f62c6a3f55e66790f605302034b8574b8d5a8b3781876" }, "downloads": -1, "filename": "imjoy-0.7.26-py3-none-any.whl", "has_sig": false, "md5_digest": "0b2fc5285cf81bdcd7c17c9abcbf9bce", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 40387, "upload_time": "2019-02-11T14:41:13", "url": "https://files.pythonhosted.org/packages/97/e6/15436c364898c2c33f2dbe93cfe2cc6a901444d81d8f9c3ea0d7e9357b4a/imjoy-0.7.26-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a5b273deb15ff3df8cb046c1488e0a5b", "sha256": "c650005891eb10c2c7686ed122cdf6a7962ce8205dcde8ecfd82e40ea021a71c" }, "downloads": -1, "filename": "imjoy-0.7.26.tar.gz", "has_sig": false, "md5_digest": "a5b273deb15ff3df8cb046c1488e0a5b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34808, "upload_time": "2019-02-11T14:41:15", "url": "https://files.pythonhosted.org/packages/ff/86/d3607d6233982d7fa8ea98c622d8dd8849d2c30812b07a6e9965ccd47b7e/imjoy-0.7.26.tar.gz" } ], "0.7.28": [ { "comment_text": "", "digests": { "md5": "84ba534039a5eaa1cd0efe20d417191d", "sha256": "5bf3eaf984470fa640651b1e8f111d60737110f5b5b0c2a2bf909267366674cc" }, "downloads": -1, "filename": "imjoy-0.7.28-py3-none-any.whl", "has_sig": false, "md5_digest": "84ba534039a5eaa1cd0efe20d417191d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 40614, "upload_time": "2019-02-11T15:46:38", "url": "https://files.pythonhosted.org/packages/c1/84/ff3e57c674da0c88f3c7a7452f84cb1102c4131808b328856f5d66192ac2/imjoy-0.7.28-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "10412522dc4b7a7a6e23c4379e0bfdca", "sha256": "d048e6d0d87ac16eb9bfbc3895d53a646efcd27ca925beca3b3a9a7ad72bcd78" }, "downloads": -1, "filename": "imjoy-0.7.28.tar.gz", "has_sig": false, "md5_digest": "10412522dc4b7a7a6e23c4379e0bfdca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34820, "upload_time": "2019-02-11T15:46:40", "url": "https://files.pythonhosted.org/packages/32/7b/aafbc989060fc6ab87065cba5a48a59d3c5f750aade233ca54d262631440/imjoy-0.7.28.tar.gz" } ], "0.7.30": [ { "comment_text": "", "digests": { "md5": "214b44beeacecc56f71176eabae52963", "sha256": "4914775cb5f9a60e67f435132ca18c65122afeb939ae52dbb9e47f6fbb16f8b7" }, "downloads": -1, "filename": "imjoy-0.7.30-py3-none-any.whl", "has_sig": false, "md5_digest": "214b44beeacecc56f71176eabae52963", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 40653, "upload_time": "2019-02-26T17:09:58", "url": "https://files.pythonhosted.org/packages/8c/9f/4f788a6cf2588708f5f79472dbc4ad412789d115bf495c1144cdfd3cff5e/imjoy-0.7.30-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "819cd9a5a053b76f9d2baa47ec50d3c3", "sha256": "3b57f2ede186283a018058e69ed036337d617d6e55cceb3cb54d20299503f700" }, "downloads": -1, "filename": "imjoy-0.7.30.tar.gz", "has_sig": false, "md5_digest": "819cd9a5a053b76f9d2baa47ec50d3c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34855, "upload_time": "2019-02-26T17:10:00", "url": "https://files.pythonhosted.org/packages/fd/08/0e289b50f2043e8a8e33703be9fd970feb17cc560aece934818876bf2289/imjoy-0.7.30.tar.gz" } ], "0.7.31": [ { "comment_text": "", "digests": { "md5": "b7c632cf14ea9579104533ace6f50d12", "sha256": "24297fb8fba3c21044d12e206d0b14642c09ea6c418ac1a1c79c97447a57479e" }, "downloads": -1, "filename": "imjoy-0.7.31-py3-none-any.whl", "has_sig": false, "md5_digest": "b7c632cf14ea9579104533ace6f50d12", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 40649, "upload_time": "2019-02-26T19:06:12", "url": "https://files.pythonhosted.org/packages/8d/14/8e013835ce95894bf9382bc541af49c0efa18f80bcf34268bbe6a412cab5/imjoy-0.7.31-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dd983bbcb73d08e3f01973035a8966f9", "sha256": "5c1b28eced7720df7bb7cdecc4f1d0a9435139da2c0f6c0217efc1474238ff9d" }, "downloads": -1, "filename": "imjoy-0.7.31.tar.gz", "has_sig": false, "md5_digest": "dd983bbcb73d08e3f01973035a8966f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34853, "upload_time": "2019-02-26T19:06:15", "url": "https://files.pythonhosted.org/packages/f8/2b/f823c3535abab551606d67afb57409283f00ba08331b4dcbb8656645574f/imjoy-0.7.31.tar.gz" } ], "0.7.40": [ { "comment_text": "", "digests": { "md5": "b8f7f81b3d740def56581c9746657326", "sha256": "157d09086afde2b07856c55d149fc6cff770176e25c4d3f16843857acc31f584" }, "downloads": -1, "filename": "imjoy-0.7.40-py3-none-any.whl", "has_sig": false, "md5_digest": "b8f7f81b3d740def56581c9746657326", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 40971, "upload_time": "2019-04-27T14:58:12", "url": "https://files.pythonhosted.org/packages/69/b0/da3f6aa780f063ff49297083c3e301c98cc4da2588dad212e5dc4b9c25c9/imjoy-0.7.40-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8b9b8acddc006822ce7e271fd1309469", "sha256": "d70a5eb5cd3a3d1ebdd35014281127538c13f5373b67d5c03478f3f81a6e6729" }, "downloads": -1, "filename": "imjoy-0.7.40.tar.gz", "has_sig": false, "md5_digest": "8b9b8acddc006822ce7e271fd1309469", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35037, "upload_time": "2019-04-27T14:58:17", "url": "https://files.pythonhosted.org/packages/63/ed/7034348fec1261179f71d77f8524753793af5509eaff32ffc7deae076e50/imjoy-0.7.40.tar.gz" } ], "0.7.41": [ { "comment_text": "", "digests": { "md5": "1df6c6384b8b8897aa857848a353e241", "sha256": "94fd98e03e7ca26f1b7f4e6c1e7ca46db547965c1cf59f263b22dc7cec79da8d" }, "downloads": -1, "filename": "imjoy-0.7.41-py3-none-any.whl", "has_sig": false, "md5_digest": "1df6c6384b8b8897aa857848a353e241", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 42088, "upload_time": "2019-04-28T01:13:03", "url": "https://files.pythonhosted.org/packages/f7/da/70ce95b214f716d1f93ecee1206006b709698cd1a67cb004b32dd35090a6/imjoy-0.7.41-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2525b0418e0ba595b438b789385f2135", "sha256": "f8587694968c73b462fd649f32011e9e0e4542a960712f31d91dbf2987643d44" }, "downloads": -1, "filename": "imjoy-0.7.41.tar.gz", "has_sig": false, "md5_digest": "2525b0418e0ba595b438b789385f2135", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36106, "upload_time": "2019-04-28T01:13:07", "url": "https://files.pythonhosted.org/packages/d6/85/a537817f474e408a2f903504fc1ed60b023ac7a23409922155571d7108e6/imjoy-0.7.41.tar.gz" } ], "0.7.50": [ { "comment_text": "", "digests": { "md5": "dd8b3e3f2818c3a62efc688a61a9c415", "sha256": "6e8e68e32e3a074e76a08655ca100d1e89b00923584b58ca6ca1e8642b0f0fb8" }, "downloads": -1, "filename": "imjoy-0.7.50-py3-none-any.whl", "has_sig": false, "md5_digest": "dd8b3e3f2818c3a62efc688a61a9c415", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 41913, "upload_time": "2019-04-28T14:04:49", "url": "https://files.pythonhosted.org/packages/1f/63/c75cb91b1ab2d313d9bbf900096000431ffee0db2bd53ff3558ca2ece338/imjoy-0.7.50-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a6c6aa1fb813ea516002e9e7c76f26f9", "sha256": "895f659f5f48edb26262988304aab6928ffdb7d834d657ad42d6332d49769e27" }, "downloads": -1, "filename": "imjoy-0.7.50.tar.gz", "has_sig": false, "md5_digest": "a6c6aa1fb813ea516002e9e7c76f26f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35948, "upload_time": "2019-04-28T14:04:54", "url": "https://files.pythonhosted.org/packages/ff/9f/14bab6f6c06cd27e89127a80e6a04826ea3f36e146c8e6b4c8900219b974/imjoy-0.7.50.tar.gz" } ], "0.7.51": [ { "comment_text": "", "digests": { "md5": "d54d35aab8ebad8d6264f6da29f30b7c", "sha256": "cd10490ab83ecca3d9343f805bdb1cb2ce67bb580fcb59298ff8dbd40e4e1071" }, "downloads": -1, "filename": "imjoy-0.7.51-py3-none-any.whl", "has_sig": false, "md5_digest": "d54d35aab8ebad8d6264f6da29f30b7c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 41939, "upload_time": "2019-04-28T19:34:23", "url": "https://files.pythonhosted.org/packages/5c/0c/c9de7e7a8b0d7856dd010119ce2adbaf760ba1a118fb7bf82af88d9eb5cf/imjoy-0.7.51-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4a0bd3cca93a6196d7f34e554ca07f54", "sha256": "e35a302c7620013a71d73610a8fbcbb07c30ad50282afb708fa59d48f46ea52a" }, "downloads": -1, "filename": "imjoy-0.7.51.tar.gz", "has_sig": false, "md5_digest": "4a0bd3cca93a6196d7f34e554ca07f54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35971, "upload_time": "2019-04-28T19:34:30", "url": "https://files.pythonhosted.org/packages/24/f3/fdc380f194401f4cff237cf8110fd27e71872ea85da353a8c2a7a916c688/imjoy-0.7.51.tar.gz" } ], "0.7.52": [ { "comment_text": "", "digests": { "md5": "ff05738097a212053aae583cd1f0755e", "sha256": "e4f3692c1cda27784bcf09ba179c5a20d0f9918320fb30fc6799d9fecf623608" }, "downloads": -1, "filename": "imjoy-0.7.52-py3-none-any.whl", "has_sig": false, "md5_digest": "ff05738097a212053aae583cd1f0755e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 42007, "upload_time": "2019-04-29T00:24:08", "url": "https://files.pythonhosted.org/packages/2e/97/ac11b4c4b4bd7f374945f23b2c678be4f79c84275f5da660f54dae142510/imjoy-0.7.52-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "12e989aaf4c91a27ec6b175b57e43a2e", "sha256": "2c6385bb67cefb389aaaea3012c6f8705399f4e54b0e07af5d8e753e18bf4b94" }, "downloads": -1, "filename": "imjoy-0.7.52.tar.gz", "has_sig": false, "md5_digest": "12e989aaf4c91a27ec6b175b57e43a2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36042, "upload_time": "2019-04-29T00:24:12", "url": "https://files.pythonhosted.org/packages/9d/8e/56751c94a53cf594664a8277f11dbbf0183db9724ddefd993ec9bf0bd0af/imjoy-0.7.52.tar.gz" } ], "0.7.53": [ { "comment_text": "", "digests": { "md5": "d71abd23856ff1ab809c588739e0704a", "sha256": "981b7de540fe3dc9316ba7308b0b3431fa37253077271dce01c3410591cb4088" }, "downloads": -1, "filename": "imjoy-0.7.53-py3-none-any.whl", "has_sig": false, "md5_digest": "d71abd23856ff1ab809c588739e0704a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 42022, "upload_time": "2019-04-29T11:27:44", "url": "https://files.pythonhosted.org/packages/a1/7d/4dc01d079dabe77e86746b6ac43efe3671f96a4bb4ad125ef809e54d69ec/imjoy-0.7.53-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ee8131506b2ed5913cee738878eb1622", "sha256": "c576af348e88f89a8e4907a662183983f83a480970f2eccc56322acbe14028ea" }, "downloads": -1, "filename": "imjoy-0.7.53.tar.gz", "has_sig": false, "md5_digest": "ee8131506b2ed5913cee738878eb1622", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36053, "upload_time": "2019-04-29T11:27:49", "url": "https://files.pythonhosted.org/packages/07/e6/be95bda222d3e001df65354b90a385b10c12a8e4ca3206ad8c001595bf9e/imjoy-0.7.53.tar.gz" } ], "0.7.54": [ { "comment_text": "", "digests": { "md5": "9f9ecc58d8721fc6e96aef8999b4e9c4", "sha256": "9e5ea5851cef78841d8f16e79d1f248ab41292bc2dfa9c804984d8ded9933d8b" }, "downloads": -1, "filename": "imjoy-0.7.54-py3-none-any.whl", "has_sig": false, "md5_digest": "9f9ecc58d8721fc6e96aef8999b4e9c4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 42018, "upload_time": "2019-04-29T11:32:11", "url": "https://files.pythonhosted.org/packages/4b/f4/5030fa0d43987d436f1a0c54126aa0f8c0b62845ae85bd379f66b9768533/imjoy-0.7.54-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "99479d2f52d8a9c78c18a06aa78344fc", "sha256": "2604b02c192d40550d07c7c53a37410c49d58d0e253498f3fdc5e8dbe24a9f09" }, "downloads": -1, "filename": "imjoy-0.7.54.tar.gz", "has_sig": false, "md5_digest": "99479d2f52d8a9c78c18a06aa78344fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36043, "upload_time": "2019-04-29T11:32:18", "url": "https://files.pythonhosted.org/packages/c1/e3/dcc6028120e003d3806f4926608e487b28236aaecc551bfc04ab49677b40/imjoy-0.7.54.tar.gz" } ], "0.7.56": [ { "comment_text": "", "digests": { "md5": "12193e6d5efe584229231142343b753e", "sha256": "de7d25b11e6a89d4ac38544bf41ffbc5488f61270076d048adc312754bae74a4" }, "downloads": -1, "filename": "imjoy-0.7.56-py3-none-any.whl", "has_sig": false, "md5_digest": "12193e6d5efe584229231142343b753e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 42433, "upload_time": "2019-05-04T19:15:57", "url": "https://files.pythonhosted.org/packages/95/16/9a5200d8d4711794bce36c7dc41d7d5d0102eb58572c1f209601b968e66d/imjoy-0.7.56-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3a0c1f4d585fe00989ed3a77d7273004", "sha256": "3ad8cb65442712561adc485a6934eca57684e8961ae11bc0e425ab7425bcf071" }, "downloads": -1, "filename": "imjoy-0.7.56.tar.gz", "has_sig": false, "md5_digest": "3a0c1f4d585fe00989ed3a77d7273004", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36515, "upload_time": "2019-05-04T19:16:05", "url": "https://files.pythonhosted.org/packages/e5/ec/e86dab24f64efebc78e6054fd6bb6d6065c35fe2be080764a4113da3d431/imjoy-0.7.56.tar.gz" } ], "0.7.57": [ { "comment_text": "", "digests": { "md5": "87ecc1513dbe1d0ca46e69057a4b299c", "sha256": "fdd7073958396980e1af9387a1947fcf802136a89eef2f4485ed505096cc5322" }, "downloads": -1, "filename": "imjoy-0.7.57-py3-none-any.whl", "has_sig": false, "md5_digest": "87ecc1513dbe1d0ca46e69057a4b299c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 42448, "upload_time": "2019-05-04T21:19:58", "url": "https://files.pythonhosted.org/packages/40/aa/b9651c66d56963e5c4669d93b14caee235e217b326f99f9f92b0c0f3e295/imjoy-0.7.57-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "01034cc948e7fc02e9c4a47c1e177b3b", "sha256": "161e794d175655c9170e4f054cf594401f5242c5cecffc2fec80ded93ecfca99" }, "downloads": -1, "filename": "imjoy-0.7.57.tar.gz", "has_sig": false, "md5_digest": "01034cc948e7fc02e9c4a47c1e177b3b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36541, "upload_time": "2019-05-04T21:20:12", "url": "https://files.pythonhosted.org/packages/48/63/3c460052cde8e6a703e7c053a8c7b75596b5e142903b84be69d42b76924d/imjoy-0.7.57.tar.gz" } ], "0.7.58": [ { "comment_text": "", "digests": { "md5": "f51c89a67493da87ae27356de6827cf9", "sha256": "fc930d368730434710a70365c63fc011f6cabe6e61ed51c802afa816848ce722" }, "downloads": -1, "filename": "imjoy-0.7.58-py3-none-any.whl", "has_sig": false, "md5_digest": "f51c89a67493da87ae27356de6827cf9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 42448, "upload_time": "2019-05-05T05:53:48", "url": "https://files.pythonhosted.org/packages/4c/81/64a9dc21bd309351556478f39947173eb54f2862abd46f16c03667b8cfc7/imjoy-0.7.58-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9c9c87b066ee808cd9c1cd9530942b31", "sha256": "2d2a8bd09830ef5d672e0c92b2fa6c0336f1d14906c91f4dbdeabe6091c33d37" }, "downloads": -1, "filename": "imjoy-0.7.58.tar.gz", "has_sig": false, "md5_digest": "9c9c87b066ee808cd9c1cd9530942b31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36521, "upload_time": "2019-05-05T05:53:51", "url": "https://files.pythonhosted.org/packages/56/1c/e4e2500d963fa2b3633888a2b1654eab3118bc95e42c95b25a7047b59b6f/imjoy-0.7.58.tar.gz" } ], "0.7.59": [ { "comment_text": "", "digests": { "md5": "07563e5156777faa902d9e75798cd7dc", "sha256": "be01608694cc6dcbe24c4d963fa94916e410ace05739a960fe7b0b248b47be6b" }, "downloads": -1, "filename": "imjoy-0.7.59-py3-none-any.whl", "has_sig": false, "md5_digest": "07563e5156777faa902d9e75798cd7dc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 42530, "upload_time": "2019-05-06T06:37:04", "url": "https://files.pythonhosted.org/packages/1f/e8/3490b3958cea5d708d7e03b828ab39e83c8c86e6690a595243cfaa471924/imjoy-0.7.59-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "06348e4ee4d31b09f67d8b440c5748d7", "sha256": "c3b67ce162cda192b6ebf22489841001ec0f2676b5a50d28dcc355e047eca1be" }, "downloads": -1, "filename": "imjoy-0.7.59.tar.gz", "has_sig": false, "md5_digest": "06348e4ee4d31b09f67d8b440c5748d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36618, "upload_time": "2019-05-06T06:37:06", "url": "https://files.pythonhosted.org/packages/7c/7c/57a0bbd3f47a1ccb8636e4fc69d51aae2dff6f1802e4629aee78fc831869/imjoy-0.7.59.tar.gz" } ], "0.7.60": [ { "comment_text": "", "digests": { "md5": "40a5c4bcf352eca63e0f39a2ed926f74", "sha256": "c7a0c8cc70e35254e6c1f923813f8c5b003a36cbe811bdeb2f13324eed3a18e0" }, "downloads": -1, "filename": "imjoy-0.7.60-py3-none-any.whl", "has_sig": false, "md5_digest": "40a5c4bcf352eca63e0f39a2ed926f74", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44991, "upload_time": "2019-05-08T08:58:16", "url": "https://files.pythonhosted.org/packages/68/df/932d52dd6b5a5b8d891a36eacd3f4426ed61ec9a3f491a46c7c8b6ce423e/imjoy-0.7.60-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2ab45b3b61839904ab16a62303dd0899", "sha256": "1710b3dc478f28bb71a1c85f25277e9fa758c5669ab5b461ca57a64a3c9a9ca8" }, "downloads": -1, "filename": "imjoy-0.7.60.tar.gz", "has_sig": false, "md5_digest": "2ab45b3b61839904ab16a62303dd0899", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38814, "upload_time": "2019-05-08T08:58:18", "url": "https://files.pythonhosted.org/packages/8a/5b/d7abfcac1b0302ce5d7f4e3ab51bdbd0ffd2ddd0d8873b4199e0b460e5b6/imjoy-0.7.60.tar.gz" } ], "0.7.63": [ { "comment_text": "", "digests": { "md5": "029311234d03687e1be89552faede2da", "sha256": "6f0b76ef32028adbf991a362131449ff7519e3c8f80602dc23e47974d67d7198" }, "downloads": -1, "filename": "imjoy-0.7.63-py3-none-any.whl", "has_sig": false, "md5_digest": "029311234d03687e1be89552faede2da", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 45876, "upload_time": "2019-05-11T14:24:16", "url": "https://files.pythonhosted.org/packages/6a/95/96fa6484015f70758c90bcf62eb33e997b2fc25bc175c6811e780ee6f547/imjoy-0.7.63-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f21e2ed17a8bbf4471e26dcfa9149365", "sha256": "4973ffebbef0811ee9c0aa0412049e3e53a56a211a4cc1f2361e49f085583e5a" }, "downloads": -1, "filename": "imjoy-0.7.63.tar.gz", "has_sig": false, "md5_digest": "f21e2ed17a8bbf4471e26dcfa9149365", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40572, "upload_time": "2019-05-11T14:24:18", "url": "https://files.pythonhosted.org/packages/0e/af/f75de3a5ee2c950ec236e523bfd155be2c679f9bc6426c6492d89aca8d8b/imjoy-0.7.63.tar.gz" } ], "0.7.64": [ { "comment_text": "", "digests": { "md5": "cbb4a40e20e07e182a13663ef29bc728", "sha256": "593d8fe25ab0317458d1ac67274744b01ed48353bdca1acc99001d4e0ff55142" }, "downloads": -1, "filename": "imjoy-0.7.64-py3-none-any.whl", "has_sig": false, "md5_digest": "cbb4a40e20e07e182a13663ef29bc728", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 45983, "upload_time": "2019-05-11T15:19:58", "url": "https://files.pythonhosted.org/packages/56/88/dad61c3b84f4b4688b77d8ebc1b12219f4aee747fc468883d34f21196629/imjoy-0.7.64-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9be0a34109e5f2035f5a4376f5eca935", "sha256": "022815b201b4774e40a734f8b80760cb801e9f871a83248fc709ace70bcf22d4" }, "downloads": -1, "filename": "imjoy-0.7.64.tar.gz", "has_sig": false, "md5_digest": "9be0a34109e5f2035f5a4376f5eca935", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40541, "upload_time": "2019-05-11T15:20:00", "url": "https://files.pythonhosted.org/packages/68/89/505ecb38df8252bffa1948803cecaa5d7afe68a43c6862cf39953ec587e9/imjoy-0.7.64.tar.gz" } ], "0.7.65": [ { "comment_text": "", "digests": { "md5": "dcf1df752c173120f85c2ce927fdf6fd", "sha256": "6ba3e9236a84a36a0264e1f37c52fcc3f9b487c8fe263ee933b1195187640015" }, "downloads": -1, "filename": "imjoy-0.7.65-py3-none-any.whl", "has_sig": false, "md5_digest": "dcf1df752c173120f85c2ce927fdf6fd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44337, "upload_time": "2019-05-12T12:13:49", "url": "https://files.pythonhosted.org/packages/92/48/6bbea42763e98f2b52c7810cae239a3e63f6f66b02be917c56a729f4727e/imjoy-0.7.65-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ebfb340e4e925590f97c8347c2a89226", "sha256": "f8ad1b206befad81a86ecb2e9056677387a0bc1ac6cbb57d3f9187d0f30e3b9f" }, "downloads": -1, "filename": "imjoy-0.7.65.tar.gz", "has_sig": false, "md5_digest": "ebfb340e4e925590f97c8347c2a89226", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41267, "upload_time": "2019-05-12T12:13:51", "url": "https://files.pythonhosted.org/packages/fc/04/bdb9b73151af026a02884a826664a7cd0f44d128171e45cff490cb7d7baa/imjoy-0.7.65.tar.gz" } ], "0.7.66": [ { "comment_text": "", "digests": { "md5": "f8d7a3df2661ebe775441dcec3106b3e", "sha256": "d23a47dc7c11fbb7e7551d451a0b0c359e92272ffdce788eae72f398ecb53c54" }, "downloads": -1, "filename": "imjoy-0.7.66-py3-none-any.whl", "has_sig": false, "md5_digest": "f8d7a3df2661ebe775441dcec3106b3e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 44248, "upload_time": "2019-05-12T14:36:41", "url": "https://files.pythonhosted.org/packages/9d/b0/3c1dd47dc43e3d7f66ae6193d9a4a72827f103247d78bbc6c4ff73149ed1/imjoy-0.7.66-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "286c0db0e22680adaf8d06de5cea600f", "sha256": "f0d99fd63200fafa7b44af91b90daab0861b35b84df0e7ba68b48be4b1e0401f" }, "downloads": -1, "filename": "imjoy-0.7.66.tar.gz", "has_sig": false, "md5_digest": "286c0db0e22680adaf8d06de5cea600f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41186, "upload_time": "2019-05-12T14:36:43", "url": "https://files.pythonhosted.org/packages/20/7b/251c2594ca436cc3896648b6817f5201486decc5d65470743f91f9e8155b/imjoy-0.7.66.tar.gz" } ], "0.7.67": [ { "comment_text": "", "digests": { "md5": "db67596ec68c509dc148ad4151df0b95", "sha256": "91aefe57440213798b203733ce136a73a8dc6a3fae77fa1fdb05af1f70d01293" }, "downloads": -1, "filename": "imjoy-0.7.67-py3-none-any.whl", "has_sig": false, "md5_digest": "db67596ec68c509dc148ad4151df0b95", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 45608, "upload_time": "2019-05-13T22:09:42", "url": "https://files.pythonhosted.org/packages/54/c9/593f650cffdf42c4e6421347391f2426c78ba5f45a2363b99f403f231c23/imjoy-0.7.67-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "27ab567d565e169fd38b14905db03249", "sha256": "e232c3e68e3642b034c0a772399d44a8326421ba7a0670a41d49db2296383181" }, "downloads": -1, "filename": "imjoy-0.7.67.tar.gz", "has_sig": false, "md5_digest": "27ab567d565e169fd38b14905db03249", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42009, "upload_time": "2019-05-13T22:09:44", "url": "https://files.pythonhosted.org/packages/b4/fa/5643186fa95b38056afcdbe8a9b49b135857e814b53fbafa414896d5cb82/imjoy-0.7.67.tar.gz" } ], "0.7.68": [ { "comment_text": "", "digests": { "md5": "5a5852f977e28967f55c7fe602025006", "sha256": "2c858e70698aec234dc64442dda3e5f5e1d6c233cb7fd48f89a15e229fbff3a6" }, "downloads": -1, "filename": "imjoy-0.7.68-py3-none-any.whl", "has_sig": false, "md5_digest": "5a5852f977e28967f55c7fe602025006", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 45651, "upload_time": "2019-05-13T22:10:51", "url": "https://files.pythonhosted.org/packages/be/fe/921115019c9db0f6dc67727b4bba304e4a9ac04c8c5ec640837200b77ce9/imjoy-0.7.68-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b680f6878867fe4fd06748e05c65692b", "sha256": "6b49ab4ef165edf0fa09204bfb4d37f1cb900572ae425f43a73663ac1e65b79b" }, "downloads": -1, "filename": "imjoy-0.7.68.tar.gz", "has_sig": false, "md5_digest": "b680f6878867fe4fd06748e05c65692b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42010, "upload_time": "2019-05-13T22:10:53", "url": "https://files.pythonhosted.org/packages/a9/02/744fcd6caee4e04577dd4ad8d1f811b0fb0aa0dfd0b0beebb77d63d8dbb1/imjoy-0.7.68.tar.gz" } ], "0.8.13": [ { "comment_text": "", "digests": { "md5": "80c144c88ffc9ba9ef7bbd734ae201f5", "sha256": "d88b68018cc3a9d5501ec927045122498fb4eef61738abfe3bf13dec50d5578e" }, "downloads": -1, "filename": "imjoy-0.8.13-py3-none-any.whl", "has_sig": false, "md5_digest": "80c144c88ffc9ba9ef7bbd734ae201f5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 48515, "upload_time": "2019-06-03T05:50:26", "url": "https://files.pythonhosted.org/packages/89/13/2ddc9a7fb870411bd29be87c57d6ebc2c5ba9fa98b87dbdc6beed65f1444/imjoy-0.8.13-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "897787eb1581986bd26313c69db99277", "sha256": "75d73f6b06b9a09ff4f6b5c0a9f7d207457d4c5bffa3ecbb8a06bf9927137795" }, "downloads": -1, "filename": "imjoy-0.8.13.tar.gz", "has_sig": false, "md5_digest": "897787eb1581986bd26313c69db99277", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40116, "upload_time": "2019-06-03T05:50:28", "url": "https://files.pythonhosted.org/packages/b6/1a/13f06da98b0c612e6dc8876470304f64ed207c80f1bacabeaf4e12ee8368/imjoy-0.8.13.tar.gz" } ], "0.8.14": [ { "comment_text": "", "digests": { "md5": "c121eda115011f572de1fa6bbdc60a13", "sha256": "5808286b2dba3b3e456dcd857cbf4342b4cda954325711d36a932d53202d8b62" }, "downloads": -1, "filename": "imjoy-0.8.14-py3-none-any.whl", "has_sig": false, "md5_digest": "c121eda115011f572de1fa6bbdc60a13", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 46679, "upload_time": "2019-06-03T10:39:44", "url": "https://files.pythonhosted.org/packages/e1/a9/44645e74f35da822a6a77958bee79a3926d0a719245ee186bc6ea6cb0663/imjoy-0.8.14-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e3e00c5714178e030573cf3ff9e87e9f", "sha256": "269775fc21cf855710b98bae493da85ddb7f8c7a25dbdbf0422b5cc2cb0fb62e" }, "downloads": -1, "filename": "imjoy-0.8.14.tar.gz", "has_sig": false, "md5_digest": "e3e00c5714178e030573cf3ff9e87e9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38885, "upload_time": "2019-06-03T10:39:45", "url": "https://files.pythonhosted.org/packages/88/2b/020f242a59a8c8174ae5e285a372e2548854c52dcc8e8df981e724b78a22/imjoy-0.8.14.tar.gz" } ], "0.8.16": [ { "comment_text": "", "digests": { "md5": "2db3be693d54c8f099bc7c5b5b024c83", "sha256": "48b103c46fc9bdaccfc1f0dea048144cbae9407a18b697d1e4cbdd5d33078684" }, "downloads": -1, "filename": "imjoy-0.8.16-py3-none-any.whl", "has_sig": false, "md5_digest": "2db3be693d54c8f099bc7c5b5b024c83", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 48698, "upload_time": "2019-06-03T23:39:53", "url": "https://files.pythonhosted.org/packages/b9/c7/138371b19bcac4b0e9de85e466a1fe1b5d17341b05f3e3e32944ddfd7190/imjoy-0.8.16-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4c8b03083dac4ca307476d959bcaf053", "sha256": "14d8e8482ba8fb8ae1ef8b79f3410b49e69f16469699a851511d308054350980" }, "downloads": -1, "filename": "imjoy-0.8.16.tar.gz", "has_sig": false, "md5_digest": "4c8b03083dac4ca307476d959bcaf053", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39999, "upload_time": "2019-06-03T23:39:54", "url": "https://files.pythonhosted.org/packages/d8/b5/1a25bd0281cb7b6fe37d44556cc2b800cf52b694996189535ade8b832bff/imjoy-0.8.16.tar.gz" } ], "0.8.17": [ { "comment_text": "", "digests": { "md5": "573abb09ead12e1edb72f337e0c5d08d", "sha256": "87a42eee30f1ad1c12725089ee62c6c1f8604991cce2bf62cb0687df749a9aa5" }, "downloads": -1, "filename": "imjoy-0.8.17-py3-none-any.whl", "has_sig": false, "md5_digest": "573abb09ead12e1edb72f337e0c5d08d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 48810, "upload_time": "2019-06-04T11:44:44", "url": "https://files.pythonhosted.org/packages/d0/ce/bdd68a0056272a44cea408de67da588163efca25a9d948c189ec05f1ad62/imjoy-0.8.17-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d1aa352dd4eb48b5d7c310877ac91078", "sha256": "52641466a95e50052ced89a879392485f90d7f941d61f11eafd9cb56923722a1" }, "downloads": -1, "filename": "imjoy-0.8.17.tar.gz", "has_sig": false, "md5_digest": "d1aa352dd4eb48b5d7c310877ac91078", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39800, "upload_time": "2019-06-04T11:44:47", "url": "https://files.pythonhosted.org/packages/9b/e1/51174f199654b4cd3cbd0a76093509c683b3ace6d64bc2a50bdd81d92181/imjoy-0.8.17.tar.gz" } ], "0.8.18": [ { "comment_text": "", "digests": { "md5": "046206ca3d78f1c4dd3c7f63c13002e8", "sha256": "2030977681d9068c8e4262d5f92e8556e7857d603be5c965839d78b37650d8a6" }, "downloads": -1, "filename": "imjoy-0.8.18-py3-none-any.whl", "has_sig": false, "md5_digest": "046206ca3d78f1c4dd3c7f63c13002e8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 48808, "upload_time": "2019-06-04T12:28:24", "url": "https://files.pythonhosted.org/packages/f0/5d/b63fc41faa40ee9c306f1e7006a1846ff4b579523315a3201e593a23b513/imjoy-0.8.18-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "453e24e352b5ff03ff8b93fd657918a6", "sha256": "00ff355f87e79a67f91a93c357b2cc73d8811898f919da9a0487f40734769f43" }, "downloads": -1, "filename": "imjoy-0.8.18.tar.gz", "has_sig": false, "md5_digest": "453e24e352b5ff03ff8b93fd657918a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39809, "upload_time": "2019-06-04T12:28:26", "url": "https://files.pythonhosted.org/packages/da/d0/95d7c92fd7f779016e934f5ab40a89c8e274a014c1ff4cddee1ae09126a3/imjoy-0.8.18.tar.gz" } ], "0.8.19": [ { "comment_text": "", "digests": { "md5": "6ec61f813b47bf5be9418c379cdfad3c", "sha256": "855fff581f43d45bc233598e3ce3927ca1b9a16969c2d68d8e845c06c6d6e5a1" }, "downloads": -1, "filename": "imjoy-0.8.19-py3-none-any.whl", "has_sig": false, "md5_digest": "6ec61f813b47bf5be9418c379cdfad3c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 48811, "upload_time": "2019-06-08T09:59:22", "url": "https://files.pythonhosted.org/packages/59/ec/687e46c5554809dd37eeb58e9c2247f71097898867856e4741038fb9a19e/imjoy-0.8.19-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "884a276c2ce4fc7a0e6b2a1be7917e4f", "sha256": "937cc1f172ab905f0405f5b44b5fbcfd2006cd82c8a95df7bce21d3f28972c8c" }, "downloads": -1, "filename": "imjoy-0.8.19.tar.gz", "has_sig": false, "md5_digest": "884a276c2ce4fc7a0e6b2a1be7917e4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39836, "upload_time": "2019-06-08T09:59:24", "url": "https://files.pythonhosted.org/packages/ef/4b/e4d2a37f6eaf2bfbac9f8d8e173a9f8d1de135c184da8f04ac06fb7f2d90/imjoy-0.8.19.tar.gz" } ], "0.8.20": [ { "comment_text": "", "digests": { "md5": "452d444332ef567a4e468e8d497bb092", "sha256": "aaa49f337f237ab6021c54b1e63cdee46ebd378c42f5fe2999ae87e7c31ac683" }, "downloads": -1, "filename": "imjoy-0.8.20-py3-none-any.whl", "has_sig": false, "md5_digest": "452d444332ef567a4e468e8d497bb092", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 48828, "upload_time": "2019-08-02T10:03:13", "url": "https://files.pythonhosted.org/packages/1a/94/f19471499eefad8c077599964816bdf65cd141c99d38323e53401042acaf/imjoy-0.8.20-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "88a9c86876f0e693f1bf58fe1f09e148", "sha256": "40e479eea35c74c7dcd7a0094fb36d8478360cf7c212ca3312383efb659c3eb2" }, "downloads": -1, "filename": "imjoy-0.8.20.tar.gz", "has_sig": false, "md5_digest": "88a9c86876f0e693f1bf58fe1f09e148", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39708, "upload_time": "2019-08-02T10:03:19", "url": "https://files.pythonhosted.org/packages/62/8e/9acc2c12b00e95bbfd54b7a9335e7f5e421901b026fd6c2fe2fe9367e558/imjoy-0.8.20.tar.gz" } ], "0.8.21": [ { "comment_text": "", "digests": { "md5": "904c28f970a2bbb4a65a15cf5aadc798", "sha256": "0c2e9aa621f982382f77ccf69ae8a0cd2c1adc984ee021d51be4961df8df4fb5" }, "downloads": -1, "filename": "imjoy-0.8.21-py3-none-any.whl", "has_sig": false, "md5_digest": "904c28f970a2bbb4a65a15cf5aadc798", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 48839, "upload_time": "2019-08-02T11:30:43", "url": "https://files.pythonhosted.org/packages/86/40/720e2abd7d5445548664ac14ede841acb24a6c03ded3ab763be462d8cc2f/imjoy-0.8.21-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "25516f7f98703dfccf921d040e2e5d31", "sha256": "0f9e1642d7ec6ec2efaf4a77fa21854e7c4e989ae6f99c636e9e4113eedbc0b8" }, "downloads": -1, "filename": "imjoy-0.8.21.tar.gz", "has_sig": false, "md5_digest": "25516f7f98703dfccf921d040e2e5d31", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39726, "upload_time": "2019-08-02T11:30:45", "url": "https://files.pythonhosted.org/packages/e3/07/246fb776a593ceb99796ebceb3add293c8efa8d5d0495e33aa8a4364a32f/imjoy-0.8.21.tar.gz" } ], "0.8.22": [ { "comment_text": "", "digests": { "md5": "18a4071daed72114910c130b9772ff93", "sha256": "eb4932f1ed697095703e465f1c9806befccb22d30888138b655f6a4e3ea50ce0" }, "downloads": -1, "filename": "imjoy-0.8.22-py3-none-any.whl", "has_sig": false, "md5_digest": "18a4071daed72114910c130b9772ff93", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 51994, "upload_time": "2019-08-11T23:42:58", "url": "https://files.pythonhosted.org/packages/68/8d/c2ef4bfb8231b042788e58e8930dbbf199a673cb1d9f6f63f0693a39a0f0/imjoy-0.8.22-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b2f89e44eed9c0164eba4564562f7d51", "sha256": "1860eecb3dbb2a31297ac57bcadad59038a3a2a095b284ba7fa321a2863dcfef" }, "downloads": -1, "filename": "imjoy-0.8.22.tar.gz", "has_sig": false, "md5_digest": "b2f89e44eed9c0164eba4564562f7d51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41995, "upload_time": "2019-08-11T23:43:00", "url": "https://files.pythonhosted.org/packages/41/df/0908ed6d49801327a498a0c1792b96f7fc477d2b4acf5d8c6b5b7b1e400c/imjoy-0.8.22.tar.gz" } ], "0.8.7": [ { "comment_text": "", "digests": { "md5": "ea2670cb3807cab846343c6f50e65829", "sha256": "dd9e1c4dc2cefca39f654270d852eb64a1f66f06900ae75785fc2d15d74db73e" }, "downloads": -1, "filename": "imjoy-0.8.7-py3-none-any.whl", "has_sig": false, "md5_digest": "ea2670cb3807cab846343c6f50e65829", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 54916, "upload_time": "2019-05-21T10:10:43", "url": "https://files.pythonhosted.org/packages/33/0f/d9379cd999f6cfd9693f8f13028fef0b92f7bc12afcb3413e7697f5e115d/imjoy-0.8.7-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b04f690fabc23d59461d907004a33cad", "sha256": "afdf651a9178fb5ae59db21a9b938a43e4a03a193ea01564b99361deacdb992e" }, "downloads": -1, "filename": "imjoy-0.8.7.tar.gz", "has_sig": false, "md5_digest": "b04f690fabc23d59461d907004a33cad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47062, "upload_time": "2019-05-21T10:10:45", "url": "https://files.pythonhosted.org/packages/c1/7c/f04dd71ec9a34b3bac7e41a2ed6f755d1076f3d9dbd0720e7a5df5f66541/imjoy-0.8.7.tar.gz" } ], "0.8.8": [ { "comment_text": "", "digests": { "md5": "40cc16499e8fec580b70b5aa98952180", "sha256": "79d855d13e70c0b0a2fe3e5826cd4221c9761c925c52d266293bf06e57f302fc" }, "downloads": -1, "filename": "imjoy-0.8.8-py3-none-any.whl", "has_sig": false, "md5_digest": "40cc16499e8fec580b70b5aa98952180", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 55127, "upload_time": "2019-05-29T11:19:05", "url": "https://files.pythonhosted.org/packages/81/fe/fe9405499ee2c17664154292cef6551e6b53cb3df74c59823f36e7d20ee8/imjoy-0.8.8-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fa9684e204eed705ba1df66eb0866056", "sha256": "02b26396f24ae7aa754fe7a70bfd6731780196a6cbd853111d907b354721437c" }, "downloads": -1, "filename": "imjoy-0.8.8.tar.gz", "has_sig": false, "md5_digest": "fa9684e204eed705ba1df66eb0866056", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47141, "upload_time": "2019-05-29T11:19:07", "url": "https://files.pythonhosted.org/packages/48/10/2bdd271eb7dc28bcf29f08aa31255fec4ebdf469a888a083ed1d73e484ca/imjoy-0.8.8.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "18a4071daed72114910c130b9772ff93", "sha256": "eb4932f1ed697095703e465f1c9806befccb22d30888138b655f6a4e3ea50ce0" }, "downloads": -1, "filename": "imjoy-0.8.22-py3-none-any.whl", "has_sig": false, "md5_digest": "18a4071daed72114910c130b9772ff93", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 51994, "upload_time": "2019-08-11T23:42:58", "url": "https://files.pythonhosted.org/packages/68/8d/c2ef4bfb8231b042788e58e8930dbbf199a673cb1d9f6f63f0693a39a0f0/imjoy-0.8.22-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b2f89e44eed9c0164eba4564562f7d51", "sha256": "1860eecb3dbb2a31297ac57bcadad59038a3a2a095b284ba7fa321a2863dcfef" }, "downloads": -1, "filename": "imjoy-0.8.22.tar.gz", "has_sig": false, "md5_digest": "b2f89e44eed9c0164eba4564562f7d51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41995, "upload_time": "2019-08-11T23:43:00", "url": "https://files.pythonhosted.org/packages/41/df/0908ed6d49801327a498a0c1792b96f7fc477d2b4acf5d8c6b5b7b1e400c/imjoy-0.8.22.tar.gz" } ] }