{ "info": { "author": "OmniSci/Quansight", "author_email": "", "bugtrack_url": null, "classifiers": [ "Framework :: Jupyter", "License :: OSI Approved :: BSD License", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.7" ], "description": "# ibis-vega-transform
[![binder logo](https://beta.mybinder.org/badge.svg)](https://mybinder.org/v2/gh/Quansight/ibis-vega-transform/master?urlpath=lab/tree/examples/vega-compiler.ipynb) [![Tests](https://github.com/Quansight/ibis-vega-transform/workflows/Run%20tests%20on%20example%20notebooks/badge.svg)](https://github.com/Quansight/ibis-vega-transform/actions?query=workflow%3A%22Run+tests+on+example+notebooks%22) [![](https://img.shields.io/pypi/v/ibis-vega-transform.svg?style=flat-square)](https://pypi.python.org/pypi/ibis-vega-transform) [![](https://img.shields.io/npm/v/ibis-vega-transform.svg?style=flat-square)](https://www.npmjs.com/package/ibis-vega-transform) ![Github Actions Status](https://github.com/Quansight/ibis-vega-transform/workflows/Build/badge.svg)[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/Quansight/ibis-vega-transform/master?urlpath=lab)\n\nA JupyterLab extension for performing Vega transforms lazily using Ibis.\n\nPython evaluation of Vega transforms using Ibis expressions.\n\nFor inspiration, see https://github.com/jakevdp/altair-transform\n\nThis extension is composed of a Python package named `ibis-vega-transform`\nfor the server extension and a NPM package named `ibis-vega-transform`\nfor the frontend extension.\n\n## Requirements\n\n- JupyterLab >= 3.0\n\n## Getting started\n\n```sh\npip install ibis-vega-transform\n```\n\nThen in a notebook, import the Python package and pass in an ibis expression\nto a Altair chart:\n\n```python\nimport altair as alt\nimport ibis_vega_transform\nimport ibis\nimport pandas as pd\n\n\nsource = pd.DataFrame({\n 'a': ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I'],\n 'b': [28, 55, 43, 91, 81, 53, 19, 87, 52]\n})\n\n# or ibis.pandas if ibis version < 1.4\nconnection = ibis.backends.pandas.connect({'source': source })\ntable = connection.table('source')\n\nalt.Chart(table).mark_bar().encode(\n x='a',\n y='b'\n)\n```\n\nCheck out the notebooks in the [`./examples/`](./examples/) directory to see\nsome options using interactive charts and the OmniSci backend.\n\n## Usage\n\nImporting `ibis_vega_transform` sets the `altair` renderer and data transformer to `\"ibis\"`. It also monkeypatches the Ibis chart constructor to handle `ibis` expressions.\n\nNow, whenever you pass an `ibis` expression to a chart constructor, it will use the custom ibis renderer, which pushes all data aggregates to ibis, instead of in the browser.\n\nYou can also set a debug flag, to have it instead pull in the first N rows of the ibis expression and use the default renderer. This is useful to see how the default pipeline would have rendered your chart. If you are getting some error, I reccomend setting this first to see if the error was on the Altair side or on the `ibis-vega-transform` side. If the fallback chart rendered correctly, it means the error is in this codebase. If it's wrong, then the error is in your code or in altair or in Vega.\n\n```python\n# enable fallback mode\nibis_vega_transform.set_fallback(True)\n# disable fallback mode (the default)\nibis_vega_transform.set_fallback(False)\n```\n\n### Tracing\n\nIf you want to see traces of the interactions for debugging and performance analysis,\ninstall the `jaeger-all-in-one` binary and the `jupyterlab-server-proxy`\nlab extension to see the Jaeger icon in the launcher.\n\n```bash\nconda install jaeger -c conda-forge\njupyter labextension install jupyterlab-server-proxy-saulshanabrook\n```\n\nThe Jaeger server won't actually be started until a HTTP request is sent to it,\nso before you run your visualization, click the \"Jaeger\" icon in the JupyterLab launcher or go to\n`/jaeger` to open the UI. Then run your visualization and you should see the traces appear in Jaeger.\n\nYou also will likely have to increase the max UDP packet size on your OS to [accomdate for the large logs](https://github.com/jaegertracing/jaeger-client-node/issues/124#issuecomment-324222456):\n\n### Mac\n\n```sh\n# Edit now\nsudo sysctl net.inet.udp.maxdgram=200000\n# Edit on restart\necho net.inet.udp.maxdgram=200000 | sudo tee -a /etc/sysctl.conf\n```\n\n## Troubleshoot\n\nIf you are seeing the frontend extension, but it is not working, check\nthat the server extension is enabled:\n\n```bash\njupyter server extension list\n```\n\nIf the server extension is installed and enabled, but you are not seeing\nthe frontend extension, check the frontend extension is installed:\n\n```bash\njupyter labextension list\n```\n\n## Contributing\n\n### Development install\n\nNote: You will need NodeJS to build the extension package.\n\nThe `jlpm` command is JupyterLab's pinned version of\n[yarn](https://yarnpkg.com/) that is installed with JupyterLab. You may use\n`yarn` or `npm` in lieu of `jlpm` below.\n\n```bash\n# Clone the repo to your local environment\ngit clone git@github.com:Quansight/ibis-vega-transform.git\n\n# Change directory to the ibis-vega-transform directory and\n# Create a conda environment\ncd ibis-vega-transform\nconda env create -f binder/environment.yml\nconda activate ibis-vega-transform\n\n# Install package in development mode\npip install -e .\n# Link your development version of the extension with JupyterLab\njupyter labextension develop . --overwrite\n# Rebuild extension Typescript source after making changes\njlpm run build\n```\n\nYou can watch the source directory and run JupyterLab at the same time in different terminals to watch for changes in the extension's source and automatically rebuild the extension.\n\n```bash\n# Watch the source directory in one terminal, automatically rebuilding when needed\njlpm run watch\n# Run JupyterLab in another terminal\njupyter lab\n```\n\nWith the watch command running, every saved change will immediately be built locally and available in your running JupyterLab. Refresh JupyterLab to load the change in your browser (you may need to wait several seconds for the extension to be rebuilt).\n\nBy default, the `jlpm run build` command generates the source maps for this extension to make it easier to debug using the browser dev tools. To also generate source maps for the JupyterLab core extensions, you can run the following command:\n\n```bash\njupyter lab build --minimize=False\n```\n\nA pre-commit hook is installed usig Husky (Git > 2.13 is required!) to format files.\n\nRun the formatting tools at any time using:\n\n```sh\nblack ibis_vega_transform\njlpm run prettier\n```\n\n### Tracing\n\nWe are using [`jupyter-jaeger`](https://github.com/Quansight/jupyter-jaeger) to trace each interaction\nfor benchmarking.\n\n### Uninstall\n\n```bash\npip uninstall ibis-vega-transform\n```\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/Quansight/ibis-vega-transform", "keywords": "Jupyter,JupyterLab,JupyterLab3", "license": "Apache-2.0", "maintainer": "", "maintainer_email": "", "name": "ibis-vega-transform", "package_url": "https://pypi.org/project/ibis-vega-transform/", "platform": "Linux", "project_url": "https://pypi.org/project/ibis-vega-transform/", "project_urls": { "Homepage": "https://github.com/Quansight/ibis-vega-transform" }, "release_url": "https://pypi.org/project/ibis-vega-transform/5.3.0/", "requires_dist": [ "jupyterlab (==3.*,>=3.0.0rc13)", "setuptools (>=46.4.0)", "altair (>=4.0.0)", "altair-transform", "ibis-framework (>=1.3.0)", "jaeger-client", "jupyter-jaeger (>=1.0.4)", "jupyterlab-server", "mypy-extensions", "nbclassic (>=0.2)", "opentracing", "pymapd (>=0.24)", "sqlalchemy (<1.4)", "tornado", "typing-extensions", "vega-datasets" ], "requires_python": ">=3.7,<3.9", "summary": "Evaluate Vega transforms using Ibis expressions.", "version": "5.3.0", "yanked": false, "yanked_reason": null }, "last_serial": 10044544, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "98f2b655163716991ac5557b5bac9d8d", "sha256": "131ee11a49c405c1b28fa610f8fa22c723654855f7fbced7a53a0f6c5dd7f705" }, "downloads": -1, "filename": "ibis_vega_transform-0.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "98f2b655163716991ac5557b5bac9d8d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 9778, "upload_time": "2019-07-19T21:14:11", "upload_time_iso_8601": "2019-07-19T21:14:11.093130Z", "url": "https://files.pythonhosted.org/packages/19/35/9b1f56fc90c4615f9590e462dfdf05d19377d79679af1024a9fd18e18207/ibis_vega_transform-0.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eefbcc4577515f8bfb10bfd4d075d710", "sha256": "1721e71f5626686dbe68feea2c1b72fafd67104226d0b3da42e1d78ccefc0ab0" }, "downloads": -1, "filename": "ibis-vega-transform-0.1.0.tar.gz", "has_sig": false, "md5_digest": "eefbcc4577515f8bfb10bfd4d075d710", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 9805, "upload_time": "2019-07-19T21:14:13", "upload_time_iso_8601": "2019-07-19T21:14:13.373946Z", "url": "https://files.pythonhosted.org/packages/5e/f0/cef2bd893128db98d41a08daac945888665e050eeda79267f36a3119ad84/ibis-vega-transform-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "e2ad62e7386327945faa256d493e872b", "sha256": "4d77185e5c0f01bca8791f160c7b043425668f26a8e9d6a74506d5db43b10a6c" }, "downloads": -1, "filename": "ibis_vega_transform-1.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e2ad62e7386327945faa256d493e872b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 18442, "upload_time": "2019-08-21T23:45:31", "upload_time_iso_8601": "2019-08-21T23:45:31.205665Z", "url": "https://files.pythonhosted.org/packages/b1/74/cab685eb5e91913a25228d3129a6d4ddbf5f8bd90b760f8c1d0bcfeba00a/ibis_vega_transform-1.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9723c99d549bcf5ed1e965131bf729f0", "sha256": "7b31522752ba2e6e1f0a20157a2c1b3c8cd24d802a161ca0b523ff66cb73d736" }, "downloads": -1, "filename": "ibis-vega-transform-1.0.0.tar.gz", "has_sig": false, "md5_digest": "9723c99d549bcf5ed1e965131bf729f0", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 15363, "upload_time": "2019-08-21T23:45:32", "upload_time_iso_8601": "2019-08-21T23:45:32.762779Z", "url": "https://files.pythonhosted.org/packages/5f/c9/55a292ddaaa54c7bcce062eac3bd81176558f7cf727d562c5c4dbe3dcc58/ibis-vega-transform-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "66f10d4290bf88e79009a4f31dfb9704", "sha256": "91dec56655e5c1e9b491c3ec8cc68eaa0ddc80f810271efd6df6e1bde29476ab" }, "downloads": -1, "filename": "ibis_vega_transform-1.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "66f10d4290bf88e79009a4f31dfb9704", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 20752, "upload_time": "2019-08-30T17:09:50", "upload_time_iso_8601": "2019-08-30T17:09:50.947632Z", "url": "https://files.pythonhosted.org/packages/3f/de/9fffb478a914a6c59b9b27d2b5c6bd4b9a64432bc2c8677a41c311a4edd7/ibis_vega_transform-1.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "106263468d04019c7d0a2c27025993b3", "sha256": "0038c4496627eb6493a17747ff6d7bdeff77a295d8a6c7aad51436d01918ff2a" }, "downloads": -1, "filename": "ibis-vega-transform-1.1.0.tar.gz", "has_sig": false, "md5_digest": "106263468d04019c7d0a2c27025993b3", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 18099, "upload_time": "2019-08-30T17:09:52", "upload_time_iso_8601": "2019-08-30T17:09:52.351312Z", "url": "https://files.pythonhosted.org/packages/48/3c/d792c390c3acb1070063552d0e49340b6a11fb65c51a716fd0ee7757d459/ibis-vega-transform-1.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "bc9299e9f96a4471053281d04b329c7c", "sha256": "0c90155a0682e6ea5dbb8dafa618b0966377539dc5a5200c7ee211c110b2866f" }, "downloads": -1, "filename": "ibis_vega_transform-2.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "bc9299e9f96a4471053281d04b329c7c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 28257, "upload_time": "2019-10-30T16:28:20", "upload_time_iso_8601": "2019-10-30T16:28:20.333271Z", "url": "https://files.pythonhosted.org/packages/fe/27/e20342d577895b109ea53e94913beb7433a0f42a1d2dba82a31e67a16dae/ibis_vega_transform-2.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "597fec8dcfff9d35a045816321fe5d3c", "sha256": "aa38562ba8f0591e3230f1996dd6a9e23b99a73250293727a62dd1aa69f78b74" }, "downloads": -1, "filename": "ibis-vega-transform-2.0.1.tar.gz", "has_sig": false, "md5_digest": "597fec8dcfff9d35a045816321fe5d3c", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 19686, "upload_time": "2019-10-30T16:28:21", "upload_time_iso_8601": "2019-10-30T16:28:21.819458Z", "url": "https://files.pythonhosted.org/packages/f3/6d/a89b81f291124afa485410c2feadcbd311af1e2115d4e90e5144f3f0dbd4/ibis-vega-transform-2.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "e2e0e78ba08dd1006332d185adf08a1a", "sha256": "850c68011686cd8aa8fbe27ace84c607053373137622dc6293d31692bb389276" }, "downloads": -1, "filename": "ibis_vega_transform-3.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e2e0e78ba08dd1006332d185adf08a1a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 30129, "upload_time": "2020-02-22T14:21:27", "upload_time_iso_8601": "2020-02-22T14:21:27.107220Z", "url": "https://files.pythonhosted.org/packages/67/e7/2e8b45cb5d88c7da57c0de5010ddb90c6706757a53a7196fc6967876691a/ibis_vega_transform-3.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4bfb075d905e8df92e2555aec62ac56a", "sha256": "0c53d6f5d0aa91a8a50d994f0a8ceb5f99fba858bf8edb262f80ec6f85a44e70" }, "downloads": -1, "filename": "ibis-vega-transform-3.0.0.tar.gz", "has_sig": false, "md5_digest": "4bfb075d905e8df92e2555aec62ac56a", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 21584, "upload_time": "2020-02-22T14:21:28", "upload_time_iso_8601": "2020-02-22T14:21:28.329848Z", "url": "https://files.pythonhosted.org/packages/1d/2d/545e0e8159bc91f94057758a91d1428b237cd87173e20aab14e7164fb157/ibis-vega-transform-3.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "a6be24f298f196758072451ee85bac31", "sha256": "91823b830cadbff6721b003214debf7909e09288dbd591c3075d6af4142b0083" }, "downloads": -1, "filename": "ibis_vega_transform-4.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "a6be24f298f196758072451ee85bac31", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 26744, "upload_time": "2020-03-18T20:48:39", "upload_time_iso_8601": "2020-03-18T20:48:39.812972Z", "url": "https://files.pythonhosted.org/packages/e0/da/a0215d34bcf5b4eadf7e5747131dffcd5f3baf508043758ba5a06da0090c/ibis_vega_transform-4.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bfab7b7217c4d103c8ccdb7630490614", "sha256": "4b73855f40cfb1d34118fb958e4792269bbca9cc3e3a5bcec84c85848b3963bc" }, "downloads": -1, "filename": "ibis-vega-transform-4.0.0.tar.gz", "has_sig": false, "md5_digest": "bfab7b7217c4d103c8ccdb7630490614", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 21744, "upload_time": "2020-03-18T20:48:41", "upload_time_iso_8601": "2020-03-18T20:48:41.507196Z", "url": "https://files.pythonhosted.org/packages/b1/af/623a557925ad95f7188d9e4bf058ec01eddac887ecd59cd3b41217d0cf1a/ibis-vega-transform-4.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "5.0.0": [ { "comment_text": "", "digests": { "md5": "ae8048c1b2cc4d107d5c119f61d7cd90", "sha256": "3ac0479fd48f69a61ce3e6d7c832b039d0e63c0f92f40f2b00fb99fa911a979d" }, "downloads": -1, "filename": "ibis_vega_transform-5.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ae8048c1b2cc4d107d5c119f61d7cd90", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 26586, "upload_time": "2020-03-19T19:41:11", "upload_time_iso_8601": "2020-03-19T19:41:11.788327Z", "url": "https://files.pythonhosted.org/packages/5f/da/e161c26eb9492825fa1fb0bec5cfe5a90038f127710dff70c0e946d0c5dd/ibis_vega_transform-5.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "078c22f16d54f9085479723ea9314e2d", "sha256": "7be40a0b6bfba12531b6689a866037b87badb478af43714bbf0cb79aeee6475f" }, "downloads": -1, "filename": "ibis-vega-transform-5.0.0.tar.gz", "has_sig": false, "md5_digest": "078c22f16d54f9085479723ea9314e2d", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 21440, "upload_time": "2020-03-19T19:41:13", "upload_time_iso_8601": "2020-03-19T19:41:13.473925Z", "url": "https://files.pythonhosted.org/packages/bd/3b/7e86bc74bd03a97bb71858a40660a693604ed7dbe58edfff7ab0389d67f4/ibis-vega-transform-5.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "5.1.0": [ { "comment_text": "", "digests": { "md5": "7bc77f3cd23e474ad5f1e9f631cf06e3", "sha256": "06a29f063f55f3cad7a0048f7ce94300d1e7450ec40f16deb2b15d0061f25e6a" }, "downloads": -1, "filename": "ibis_vega_transform-5.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7bc77f3cd23e474ad5f1e9f631cf06e3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 26660, "upload_time": "2020-07-20T17:35:32", "upload_time_iso_8601": "2020-07-20T17:35:32.162010Z", "url": "https://files.pythonhosted.org/packages/bb/93/585bfd7315b226fcc33215d47f0027852eff97ab10ecbeabe99a67d790cb/ibis_vega_transform-5.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "be87964bb5681371918d4f41ea8f9ea5", "sha256": "b80f2b037c71795b720a46085492e3bf4ea0555df30031327b33c62689b167dc" }, "downloads": -1, "filename": "ibis-vega-transform-5.1.0.tar.gz", "has_sig": false, "md5_digest": "be87964bb5681371918d4f41ea8f9ea5", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 21607, "upload_time": "2020-07-20T17:35:35", "upload_time_iso_8601": "2020-07-20T17:35:35.105919Z", "url": "https://files.pythonhosted.org/packages/d1/79/44f0bba0f80bc282b29b8edbfb2bce7647e4388a1d6179e0eb86e826e819/ibis-vega-transform-5.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "5.2.0": [ { "comment_text": "", "digests": { "md5": "50fca0deaba012522c3a78f9f740826d", "sha256": "3975d27ba4ffb18a70096644ecc57a546935f08a792ea7f31cfef94b1e248219" }, "downloads": -1, "filename": "ibis_vega_transform-5.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "50fca0deaba012522c3a78f9f740826d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.6", "size": 27170, "upload_time": "2020-08-21T16:01:51", "upload_time_iso_8601": "2020-08-21T16:01:51.616288Z", "url": "https://files.pythonhosted.org/packages/f7/03/24325d541570807fd3db532f5ddb6d6f2a7f699647794f1dc54c4a1b3799/ibis_vega_transform-5.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eb492786fc3fcfbb79744771bf427c55", "sha256": "549c68bb8fbee63b5e234993da4d4d46452fc55ed72119de1a5e16d00aeae6be" }, "downloads": -1, "filename": "ibis-vega-transform-5.2.0.tar.gz", "has_sig": false, "md5_digest": "eb492786fc3fcfbb79744771bf427c55", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.6", "size": 22457, "upload_time": "2020-08-21T16:01:55", "upload_time_iso_8601": "2020-08-21T16:01:55.591003Z", "url": "https://files.pythonhosted.org/packages/95/3d/825bd414e18f8c2f6fa40fe517823dea7e5df45dc8d06a00eba790a8aa92/ibis-vega-transform-5.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "5.2.1": [ { "comment_text": "", "digests": { "md5": "1b260b5794657b089fd3b80924413852", "sha256": "876a049dcf86a035fc772cb8c2d6ab432b7a187ed14a9acb86d326e5ffddda35" }, "downloads": -1, "filename": "ibis_vega_transform-5.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "1b260b5794657b089fd3b80924413852", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 27678, "upload_time": "2020-11-17T00:27:18", "upload_time_iso_8601": "2020-11-17T00:27:18.965311Z", "url": "https://files.pythonhosted.org/packages/3c/05/88e600e6d2335b3597162260f1645fbe72b261474d03c207488ac93da5cd/ibis_vega_transform-5.2.1-py3-none-any.whl", "yanked": true, "yanked_reason": "js package version was not updated" }, { "comment_text": "", "digests": { "md5": "7a3bb4078d2bfc8aba2057cb40b5804b", "sha256": "01e9d59d6d77a8755e6a3861005deca9219b95833b975ae4ebeeec7399cd91e6" }, "downloads": -1, "filename": "ibis-vega-transform-5.2.1.tar.gz", "has_sig": false, "md5_digest": "7a3bb4078d2bfc8aba2057cb40b5804b", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 22807, "upload_time": "2020-11-17T00:27:20", "upload_time_iso_8601": "2020-11-17T00:27:20.594171Z", "url": "https://files.pythonhosted.org/packages/6a/6d/b491fde83ef68fa2774570b6602b822b59ff693dec8f6cdca6deef11ff42/ibis-vega-transform-5.2.1.tar.gz", "yanked": true, "yanked_reason": "js package version was not updated" } ], "5.2.2": [ { "comment_text": "", "digests": { "md5": "b6a9a27109511372eecdb65bfeeb360b", "sha256": "aaf1e8c7a6577cc3593c0c253c77e27a7051d5be9541ecbb4f8dc75523e3b565" }, "downloads": -1, "filename": "ibis_vega_transform-5.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "b6a9a27109511372eecdb65bfeeb360b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7", "size": 27680, "upload_time": "2020-11-17T02:48:35", "upload_time_iso_8601": "2020-11-17T02:48:35.693917Z", "url": "https://files.pythonhosted.org/packages/c6/a2/080a714fb579c9155901bd00e03de7a7fad50f557a79af446c739344232f/ibis_vega_transform-5.2.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5925346b96de729c7d0a7f6da3c9c4fe", "sha256": "29e80ccefb555cf4ebfd6f2077b66ed5fd77229c95d0e83e493d405b8f15f14f" }, "downloads": -1, "filename": "ibis-vega-transform-5.2.2.tar.gz", "has_sig": false, "md5_digest": "5925346b96de729c7d0a7f6da3c9c4fe", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7", "size": 22812, "upload_time": "2020-11-17T02:48:37", "upload_time_iso_8601": "2020-11-17T02:48:37.323491Z", "url": "https://files.pythonhosted.org/packages/56/f9/2e3644f823e01038c5b9eab13e179f4790f5b5bc08ce5115ce6261808d22/ibis-vega-transform-5.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "5.3.0": [ { "comment_text": "", "digests": { "md5": "f6be0d9a1891b085a5c2ef6600353d28", "sha256": "cdf5ab57afc5de6004d4a7b6b0543373af860bbc6e1298e5960ab0ef9fe560ea" }, "downloads": -1, "filename": "ibis_vega_transform-5.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f6be0d9a1891b085a5c2ef6600353d28", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7,<3.9", "size": 651792, "upload_time": "2021-04-12T23:16:55", "upload_time_iso_8601": "2021-04-12T23:16:55.626330Z", "url": "https://files.pythonhosted.org/packages/94/4e/10bb764b9402a341641f76052271031c37bda82601614a40ea8c77d66f40/ibis_vega_transform-5.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bed72244d06fe7450eae837520c61532", "sha256": "3f3b46ce8c43ce041d41a8897a825c4d4635163b0d83cfccd8178f9c744d0f27" }, "downloads": -1, "filename": "ibis-vega-transform-5.3.0.tar.gz", "has_sig": false, "md5_digest": "bed72244d06fe7450eae837520c61532", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<3.9", "size": 332011, "upload_time": "2021-04-12T23:16:58", "upload_time_iso_8601": "2021-04-12T23:16:58.357125Z", "url": "https://files.pythonhosted.org/packages/c4/73/5d22362e35e20c86fd7cd86cb29a019a1f49b1a059f8c29ca9440050de0e/ibis-vega-transform-5.3.0.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f6be0d9a1891b085a5c2ef6600353d28", "sha256": "cdf5ab57afc5de6004d4a7b6b0543373af860bbc6e1298e5960ab0ef9fe560ea" }, "downloads": -1, "filename": "ibis_vega_transform-5.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f6be0d9a1891b085a5c2ef6600353d28", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": ">=3.7,<3.9", "size": 651792, "upload_time": "2021-04-12T23:16:55", "upload_time_iso_8601": "2021-04-12T23:16:55.626330Z", "url": "https://files.pythonhosted.org/packages/94/4e/10bb764b9402a341641f76052271031c37bda82601614a40ea8c77d66f40/ibis_vega_transform-5.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bed72244d06fe7450eae837520c61532", "sha256": "3f3b46ce8c43ce041d41a8897a825c4d4635163b0d83cfccd8178f9c744d0f27" }, "downloads": -1, "filename": "ibis-vega-transform-5.3.0.tar.gz", "has_sig": false, "md5_digest": "bed72244d06fe7450eae837520c61532", "packagetype": "sdist", "python_version": "source", "requires_python": ">=3.7,<3.9", "size": 332011, "upload_time": "2021-04-12T23:16:58", "upload_time_iso_8601": "2021-04-12T23:16:58.357125Z", "url": "https://files.pythonhosted.org/packages/c4/73/5d22362e35e20c86fd7cd86cb29a019a1f49b1a059f8c29ca9440050de0e/ibis-vega-transform-5.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }