{ "info": { "author": "Brian E. Granger / Jake VanderPlas", "author_email": "jakevdp@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Science/Research", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7" ], "description": "# Altair \n\n[![build status](http://img.shields.io/travis/altair-viz/altair/master.svg?style=flat)](https://travis-ci.org/altair-viz/altair)\n[![JOSS Paper](http://joss.theoj.org/papers/10.21105/joss.01057/status.svg)](http://joss.theoj.org/papers/10.21105/joss.01057)\n[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/altair-viz/altair_notebooks/master?urlpath=lab/tree/notebooks/Index.ipynb)\n[![Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/altair-viz/altair_notebooks/blob/master/notebooks/Index.ipynb)\n\n[http://altair-viz.github.io](http://altair-viz.github.io)\n\n**Altair** is a declarative statistical visualization library for Python. With Altair, you can spend more time understanding your data and its meaning. Altair's\nAPI is simple, friendly and consistent and built on top of the powerful\n[Vega-Lite](https://github.com/vega/vega-lite) JSON specification. This elegant\nsimplicity produces beautiful and effective visualizations with a minimal amount of code. *Altair is developed by [Jake Vanderplas](https://github.com/jakevdp) and [Brian\nGranger](https://github.com/ellisonbg) in close collaboration with the [UW\nInteractive Data Lab](http://idl.cs.washington.edu/).*\n\n## Altair Documentation\n\nSee [Altair's Documentation Site](http://altair-viz.github.io),\nas well as Altair's [Tutorial Notebooks](http://github.com/altair-viz/altair_notebooks).\n\n## Example\n\nHere is an example using Altair to quickly visualize and display a dataset with the native Vega-Lite renderer in the JupyterLab:\n\n```python\nimport altair as alt\n\n# to use with Jupyter notebook (not JupyterLab) run the following\n# alt.renderers.enable('notebook')\n\n# load a simple dataset as a pandas DataFrame\nfrom vega_datasets import data\ncars = data.cars()\n\nalt.Chart(cars).mark_point().encode(\n x='Horsepower',\n y='Miles_per_Gallon',\n color='Origin',\n)\n```\n\n![Altair Visualization](https://raw.githubusercontent.com/altair-viz/altair/master/images/cars.png)\n\nOne of the unique features of Altair, inherited from Vega-Lite, is a declarative grammar of not just visualization, but _interaction_. \nWith a few modifications to the example above we can created a linked histogram which is filtered based on a selection of the scatter plot.\n\n```python \nimport altair as alt\nfrom vega_datasets import data\n\nsource = data.cars()\n\nbrush = alt.selection(type='interval')\n\npoints = alt.Chart(source).mark_point().encode(\n x='Horsepower',\n y='Miles_per_Gallon',\n color=alt.condition(brush, 'Origin', alt.value('lightgray'))\n).add_selection(\n brush\n)\n\nbars = alt.Chart(source).mark_bar().encode(\n y='Origin',\n color='Origin',\n x='count(Origin)'\n).transform_filter(\n brush\n)\n\npoints & bars\n```\n\n![Altair Visualization Gif](https://raw.githubusercontent.com/altair-viz/altair/master/images/cars_scatter_bar.gif)\n\n\n## Getting your Questions Answered\n\nIf you have a question that is not addressed in the documentation, there are several ways to ask:\n\n- open a [Github Issue](https://github.com/altair-viz/altair/issues)\n- post a [StackOverflow Question](https://stackoverflow.com/questions/tagged/altair) (be sure to use the `altair` tag)\n- ask on the [Altair Google Group](https://groups.google.com/forum/#!forum/altair-viz)\n\nWe'll do our best to get your question answered\n\n## A Python API for statistical visualizations\n\nAltair provides a Python API for building statistical visualizations in a declarative\nmanner. By statistical visualization we mean:\n\n* The **data source** is a `DataFrame` that consists of columns of different data types (quantitative, ordinal, nominal and date/time).\n* The `DataFrame` is in a [tidy format](http://vita.had.co.nz/papers/tidy-data.pdf)\n where the rows correspond to samples and the columns correspond to the observed variables.\n* The data is mapped to the **visual properties** (position, color, size, shape,\n faceting, etc.) using the group-by data transformation.\n\nThe Altair API contains no actual visualization rendering code but instead\nemits JSON data structures following the\n[Vega-Lite](https://github.com/vega/vega-lite) specification. The resulting\nVega-Lite JSON data can be rendered in the following user-interfaces:\n\n* [Jupyter Notebook](https://github.com/jupyter/notebook) (by installing [ipyvega](https://github.com/vega/ipyvega)).\n* [JupyterLab](https://github.com/jupyterlab/jupyterlab) (no additional dependencies needed).\n* [nteract](https://github.com/nteract/nteract) (no additional dependencies needed).\n\n## Features\n\n* Carefully-designed, declarative Python API based on\n [traitlets](https://github.com/ipython/traitlets).\n* Auto-generated internal Python API that guarantees visualizations are type-checked and\n in full conformance with the [Vega-Lite](https://github.com/vega/vega-lite)\n specification.\n* Auto-generate Altair Python code from a Vega-Lite JSON spec.\n* Display visualizations in the live Jupyter Notebook, JupyterLab, nteract, on GitHub and\n [nbviewer](http://nbviewer.jupyter.org/).\n* Export visualizations to PNG/SVG images, stand-alone HTML pages and the\n[Online Vega-Lite Editor](https://vega.github.io/editor/#/).\n* Serialize visualizations as JSON files.\n* Explore Altair with dozens of examples in the [Example Gallery](https://altair-viz.github.io/gallery/index.html)\n\n## Installation\n\nTo use Altair for visualization, you need to install two sets of tools\n\n1. The core Altair Package and its dependencies\n\n2. The renderer for the frontend you wish to use (i.e. `Jupyter Notebook`,\n `JupyterLab`, or `nteract`)\n\nAltair can be installed with either ``pip`` or with ``conda``.\nFor full installation instructions, please see\nhttps://altair-viz.github.io/getting_started/installation.html\n\n## Example and tutorial notebooks\n\nWe maintain a separate Github repository of Jupyter Notebooks that contain an\ninteractive tutorial and examples:\n\nhttps://github.com/altair-viz/altair_notebooks\n\nTo launch a live notebook server with those notebook using [binder](https://mybinder.org/) or\n[Colab](http://colab.research.google.com), click on one of the following badges:\n\n[![Binder](https://beta.mybinder.org/badge.svg)](https://beta.mybinder.org/v2/gh/altair-viz/altair_notebooks/master)\n[![Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/altair-viz/altair_notebooks/blob/master/notebooks/Index.ipynb)\n\n## Project philosophy\n\nMany excellent plotting libraries exist in Python, including the main ones:\n\n* [Matplotlib](http://matplotlib.org/)\n* [Bokeh](http://bokeh.pydata.org/en/latest/)\n* [Seaborn](http://stanford.edu/~mwaskom/software/seaborn/#)\n* [Lightning](http://lightning-viz.org/)\n* [Plotly](https://plot.ly/)\n* [Pandas built-in plotting](http://pandas.pydata.org/pandas-docs/stable/visualization.html)\n* [HoloViews](http://holoviews.org)\n* [VisPy](http://vispy.org/)\n* [pygg](http://www.github.com/sirrice/pygg)\n\nEach library does a particular set of things well.\n\n### User challenges\n\nHowever, such a proliferation of options creates great difficulty for users\nas they have to wade through all of these APIs to find which of them is the\nbest for the task at hand. None of these libraries are optimized for\nhigh-level statistical visualization, so users have to assemble their own\nusing a mishmash of APIs. For individuals just learning data science, this\nforces them to focus on learning APIs rather than exploring their data.\n\nAnother challenge is current plotting APIs require the user to write code,\neven for incidental details of a visualization. This results in unfortunate\nand unnecessary cognitive burden as the visualization type (histogram,\nscatterplot, etc.) can often be inferred using basic information such as the\ncolumns of interest and the data types of those columns.\n\nFor example, if you are interested in a visualization of two numerical\ncolumns, a scatterplot is almost certainly a good starting point. If you add\na categorical column to that, you probably want to encode that column using\ncolors or facets. If inferring the visualization proves difficult at times, a\nsimple user interface can construct a visualization without any coding.\n[Tableau](http://www.tableau.com/) and the [Interactive Data\nLab's](http://idl.cs.washington.edu/)\n[Polestar](https://github.com/vega/polestar) and\n[Voyager](https://github.com/vega/voyager) are excellent examples of such UIs.\n\n### Design approach and solution\n\nWe believe that these challenges can be addressed without the creation of yet\nanother visualization library that has a programmatic API and built-in\nrendering. Altair's approach to building visualizations uses a layered design\nthat leverages the full capabilities of existing visualization libraries:\n\n1. Create a constrained, simple Python API (Altair) that is purely declarative\n2. Use the API (Altair) to emit JSON output that follows the Vega-Lite spec\n3. Render that spec using existing visualization libraries\n\nThis approach enables users to perform exploratory visualizations with a much\nsimpler API initially, pick an appropriate renderer for their usage case, and\nthen leverage the full capabilities of that renderer for more advanced plot\ncustomization.\n\nWe realize that a declarative API will necessarily be limited compared to the\nfull programmatic APIs of Matplotlib, Bokeh, etc. That is a deliberate design\nchoice we feel is needed to simplify the user experience of exploratory\nvisualization.\n\n## Development install\n\nAltair requires the following dependencies:\n\n* [pandas](http://pandas.pydata.org/)\n* [traitlets](https://github.com/ipython/traitlets)\n* [IPython](https://github.com/ipython/ipython)\n\nIf you have cloned the repository, run the following command from the root of the repository:\n\n```\npip install -e .[dev]\n```\n\nIf you do not wish to clone the repository, you can install using:\n\n```\npip install git+https://github.com/altair-viz/altair\n```\n\n## Testing\n\nTo run the test suite you must have [py.test](http://pytest.org/latest/) installed.\nTo run the tests, use\n\n```\npy.test --pyargs altair\n```\n(you can omit the `--pyargs` flag if you are running the tests from a source checkout).\n\n## Feedback and Contribution\n\nSee [`CONTRIBUTING.md`](https://github.com/altair-viz/altair/blob/master/CONTRIBUTING.md)\n\n## Citing Altair\n\n[![JOSS Paper](http://joss.theoj.org/papers/10.21105/joss.01057/status.svg)](http://joss.theoj.org/papers/10.21105/joss.01057)\n\nIf you use Altair in an academic work, please consider citing http://joss.theoj.org/papers/10.21105/joss.01057 as\n\n```bib\n@article{Altair2018,\n doi = {10.21105/joss.01057},\n url = {https://doi.org/10.21105/joss.01057},\n year = {2018},\n month = {dec},\n publisher = {The Open Journal},\n author = {Jacob VanderPlas and Brian Granger and Jeffrey Heer and Dominik Moritz and Kanit Wongsuphasawat and Arvind Satyanarayan and Eitan Lees and Ilia Timofeev and Ben Welsh and Scott Sievert},\n title = {Altair: Interactive Statistical Visualizations for Python},\n journal = {Journal of Open Source Software}\n}\n```\n\n## Whence Altair?\n\nAltair is the [brightest star](https://en.wikipedia.org/wiki/Altair) in the constellation Aquila, and along with Deneb and Vega forms the northern-hemisphere asterism known as the [Summer Triangle](https://en.wikipedia.org/wiki/Summer_Triangle).\n\n\n", "description_content_type": "text/markdown", "docs_url": null, "download_url": "http://github.com/altair-viz/altair/", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://altair-viz.github.io", "keywords": "", "license": "BSD 3-clause", "maintainer": "", "maintainer_email": "", "name": "altair", "package_url": "https://pypi.org/project/altair/", "platform": "", "project_url": "https://pypi.org/project/altair/", "project_urls": { "Download": "http://github.com/altair-viz/altair/", "Homepage": "http://altair-viz.github.io" }, "release_url": "https://pypi.org/project/altair/3.2.0/", "requires_dist": [ "entrypoints", "jinja2", "jsonschema", "numpy", "pandas", "six", "toolz", "typing (>=3.6) ; python_version < \"3.5\"", "docutils ; extra == 'dev'", "flake8 ; extra == 'dev'", "pytest ; extra == 'dev'", "sphinx ; extra == 'dev'", "m2r ; extra == 'dev'", "vega-datasets ; extra == 'dev'", "recommonmark ; extra == 'dev'", "ipython (<6) ; (python_version < \"3\") and extra == 'dev'", "ipython ; (python_version >= \"3\") and extra == 'dev'" ], "requires_python": "", "summary": "Altair: A declarative statistical visualization library for Python.", "version": "3.2.0" }, "last_serial": 5637412, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "2cefe292d7c3b05a8fb1517fe76675f6", "sha256": "998053bf1b0b21b2a4d8dce31c2cd97a3447edbe80aad50e6d83231e2bcc8d08" }, "downloads": -1, "filename": "altair-1.0.0.tar.gz", "has_sig": false, "md5_digest": "2cefe292d7c3b05a8fb1517fe76675f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3762064, "upload_time": "2016-07-11T18:56:05", "url": "https://files.pythonhosted.org/packages/96/52/2dc0ad727f988c52b0e043bec49794c301335ae0e00173459436c1791c32/altair-1.0.0.tar.gz" }, { "comment_text": "", "digests": { "md5": "875fe0e76b5a0088185cca578ade76ff", "sha256": "73949dd70a65e8e6a7bf6144a75717e225031a7e7d1743d729fbfd0a00c3a2f2" }, "downloads": -1, "filename": "altair-1.0.0.zip", "has_sig": false, "md5_digest": "875fe0e76b5a0088185cca578ade76ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3952846, "upload_time": "2016-07-11T18:56:32", "url": "https://files.pythonhosted.org/packages/ec/0d/a1ba0e566a14e3370d1cdf748960aee76714daf4fb3ac86e9e123f94e9ce/altair-1.0.0.zip" } ], "1.0.0rc1": [ { "comment_text": "", "digests": { "md5": "2db06bba8dd0974c4787ddb087f93742", "sha256": "18c6873898294af7cf8c962f11168b8715095190a5b7cf405eeee464d85a00e4" }, "downloads": -1, "filename": "altair-1.0.0rc1.tar.gz", "has_sig": false, "md5_digest": "2db06bba8dd0974c4787ddb087f93742", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1886150, "upload_time": "2016-07-09T20:47:30", "url": "https://files.pythonhosted.org/packages/9f/f4/5b90080da1e517aa5be27a20bf58ae9d5a5e3083285935a5b7ca339d0cc5/altair-1.0.0rc1.tar.gz" }, { "comment_text": "", "digests": { "md5": "b17affb469f5cf971f87832fdd876783", "sha256": "22cb906131c5051267dc04042b85418b420673508bb5ac91ae7f695dec5cc375" }, "downloads": -1, "filename": "altair-1.0.0rc1.zip", "has_sig": false, "md5_digest": "b17affb469f5cf971f87832fdd876783", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2033446, "upload_time": "2016-07-09T20:47:36", "url": "https://files.pythonhosted.org/packages/9e/51/21aabbe958be90e0cc4c4d56eca542ac17271b069c4259ae042d7fa5c822/altair-1.0.0rc1.zip" } ], "1.0.0rc2": [ { "comment_text": "", "digests": { "md5": "014e798eb052b4605df9d668e370bd65", "sha256": "5ee3c563ef52e2511c138d573dc5c72e6fe2669a46c966e832c797dc83954989" }, "downloads": -1, "filename": "altair-1.0.0rc2.tar.gz", "has_sig": false, "md5_digest": "014e798eb052b4605df9d668e370bd65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2719119, "upload_time": "2016-07-10T01:06:57", "url": "https://files.pythonhosted.org/packages/b9/40/a1c6bb3a1c2ab3e7641e1109194d9d739318920254a2eb6ed7e05ebf821b/altair-1.0.0rc2.tar.gz" }, { "comment_text": "", "digests": { "md5": "099823c6df3a119e24be4c8c8773021e", "sha256": "208d4e28c2a54a888839fa17bf531164d97fad7256e3e8c0a8eb9c1f88b5c18c" }, "downloads": -1, "filename": "altair-1.0.0rc2.zip", "has_sig": false, "md5_digest": "099823c6df3a119e24be4c8c8773021e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2890450, "upload_time": "2016-07-10T01:07:05", "url": "https://files.pythonhosted.org/packages/1d/1e/995c1d05540dbc814688af7246d484fb9d06a104fd15b9711b22d07d3f79/altair-1.0.0rc2.zip" } ], "1.0.0rc3": [ { "comment_text": "", "digests": { "md5": "f25d9887ab7f529c0dc6900e63a37c61", "sha256": "a4661e742f8f4ce15b599efd39e278e1b8013cdfc0cd02698d39d9b9c2a7ccf2" }, "downloads": -1, "filename": "altair-1.0.0rc3.tar.gz", "has_sig": false, "md5_digest": "f25d9887ab7f529c0dc6900e63a37c61", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1985303, "upload_time": "2016-07-11T04:38:42", "url": "https://files.pythonhosted.org/packages/d9/35/c06d61967c097de241b824375c6ba9ea33d730c379ee536c848773fa1439/altair-1.0.0rc3.tar.gz" }, { "comment_text": "", "digests": { "md5": "059102e3f5602ddb176525398d80297f", "sha256": "943d3d243b2c6e0f6f4bfcf18a77f5ba83f4c5b55fd87af7821e1723d8487fc7" }, "downloads": -1, "filename": "altair-1.0.0rc3.zip", "has_sig": false, "md5_digest": "059102e3f5602ddb176525398d80297f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2135921, "upload_time": "2016-07-11T04:38:48", "url": "https://files.pythonhosted.org/packages/ab/0c/fdba4e5b189c2b39efc007a61751b3e0d5fa89b2d838ba65f8a8684f3da5/altair-1.0.0rc3.zip" } ], "1.0.0rc4": [ { "comment_text": "", "digests": { "md5": "c2c8cf9fe2058442327c69effa523d3a", "sha256": "1005725876cfa11995fa12a560dde43eb301741d69675caf043d0c4d479e95d5" }, "downloads": -1, "filename": "altair-1.0.0rc4.tar.gz", "has_sig": false, "md5_digest": "c2c8cf9fe2058442327c69effa523d3a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1985278, "upload_time": "2016-07-11T04:45:24", "url": "https://files.pythonhosted.org/packages/44/b2/16fb93b83c8a01b0be841b2e1726c70e841160eba1fdb176fb54cc32ea7e/altair-1.0.0rc4.tar.gz" }, { "comment_text": "", "digests": { "md5": "8c10ff5f60acd7d6154b55feaaa934fd", "sha256": "b14e18eea7c3c475c9e2b36adcb2ccd0a04a89227b9a8c22ef6c4b003813e2a5" }, "downloads": -1, "filename": "altair-1.0.0rc4.zip", "has_sig": false, "md5_digest": "8c10ff5f60acd7d6154b55feaaa934fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2135925, "upload_time": "2016-07-11T04:45:29", "url": "https://files.pythonhosted.org/packages/00/57/9ed7b19ff26b3557543a2a02b1f0d7e4b7539a9741a1242075a2c29948e9/altair-1.0.0rc4.zip" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "ae58f1d13d2c9411730520074c1fe5ea", "sha256": "36347c5846135cc88f6ca71080c3533d07716844038a7b0200f55c206a3b8415" }, "downloads": -1, "filename": "altair-1.2.0.tar.gz", "has_sig": false, "md5_digest": "ae58f1d13d2c9411730520074c1fe5ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11675519, "upload_time": "2016-11-07T17:50:37", "url": "https://files.pythonhosted.org/packages/c7/b9/277c4428251d65b2d480c1dcc749fb34b2d764ebeed02c743a869e59a61f/altair-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "be6f597785b99be09051c0ca2f4d4bd1", "sha256": "c1303f77f1ba4d632f2958c83c0f457b2b969860b1ac9adfb872aefa1780baa7" }, "downloads": -1, "filename": "altair-1.2.1.tar.gz", "has_sig": false, "md5_digest": "be6f597785b99be09051c0ca2f4d4bd1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108071, "upload_time": "2017-10-18T00:17:34", "url": "https://files.pythonhosted.org/packages/b8/c4/0c3f6358e88a8d716ec5ac6ed20048da5d78444586e441e4e61aaf4ca6fb/altair-1.2.1.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "33074c852b8ae31f080a3868b9aeeb46", "sha256": "28efc0e6eb92d2902743d279d3b88468616d155f3653229ba7e7caf37ed953eb" }, "downloads": -1, "filename": "altair-2.0.0.tar.gz", "has_sig": false, "md5_digest": "33074c852b8ae31f080a3868b9aeeb46", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 277900, "upload_time": "2018-05-02T21:23:01", "url": "https://files.pythonhosted.org/packages/15/02/537de4bd62cde926d49ea97f71c4a00c720cda432912e79bc439a939fd4c/altair-2.0.0.tar.gz" } ], "2.0.0rc1": [ { "comment_text": "", "digests": { "md5": "c2f486e02f4d51c9cd75d5c00f4c175b", "sha256": "f87cb48ac8fd029ad3005e9bed59c15a05a7159d8797ffc5c2a90abf2d394797" }, "downloads": -1, "filename": "altair-2.0.0rc1.tar.gz", "has_sig": false, "md5_digest": "c2f486e02f4d51c9cd75d5c00f4c175b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 250524, "upload_time": "2018-03-16T21:29:18", "url": "https://files.pythonhosted.org/packages/ae/4c/a98c32db13d98fa0d56c98723aa643b21c233c466a9c79f852731ba8b104/altair-2.0.0rc1.tar.gz" } ], "2.0.0rc2": [ { "comment_text": "", "digests": { "md5": "986d3bbd84900964eb8b83f929bbe80f", "sha256": "65094af3ce5579eff8322c0fb0d1a090da46662b3712b977492ac0ad9788333e" }, "downloads": -1, "filename": "altair-2.0.0rc2.tar.gz", "has_sig": false, "md5_digest": "986d3bbd84900964eb8b83f929bbe80f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 259753, "upload_time": "2018-04-12T14:33:39", "url": "https://files.pythonhosted.org/packages/31/0a/530675251ae5b05047bf6b4c7759b0f9d1580083b231d57b8ad3e8540472/altair-2.0.0rc2.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "4810fad955c7e55f32381d20b7585b08", "sha256": "a5ec9878cbfd7e934bc95becb6a50edbbabb93614e7c59ff199b66db856c676e" }, "downloads": -1, "filename": "altair-2.0.1.tar.gz", "has_sig": false, "md5_digest": "4810fad955c7e55f32381d20b7585b08", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 278072, "upload_time": "2018-05-02T23:13:47", "url": "https://files.pythonhosted.org/packages/19/1f/55b9d398b3217bb9feb8405188b38f13320ece65f383cf769e38ac4a81ba/altair-2.0.1.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "5e2a03f017d25e662c41273f8e064bcb", "sha256": "7926e2e1680457d70d52c5157468770f28b6ab6b126ba65fbd3824ebf6422e8b" }, "downloads": -1, "filename": "altair-2.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5e2a03f017d25e662c41273f8e064bcb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 340030, "upload_time": "2018-06-06T16:35:20", "url": "https://files.pythonhosted.org/packages/40/10/2980472533fc35934187b4dbac2bbf8c78c0797fd3e64fa8b2a215586773/altair-2.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7a472b0092389faa42d7c128f91fee99", "sha256": "e8b222588dde98ec614e6808357fde7fa321118db44cc909df2bf30158d931c0" }, "downloads": -1, "filename": "altair-2.1.0.tar.gz", "has_sig": false, "md5_digest": "7a472b0092389faa42d7c128f91fee99", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 284459, "upload_time": "2018-06-06T16:35:22", "url": "https://files.pythonhosted.org/packages/77/b2/c1134ac8eac76b76c9d398dbb9aae368faa1202353361f5760c2bb8252d3/altair-2.1.0.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "54d190bd43eb97a84c0fd9e9a63ca68d", "sha256": "fd75529304739b074e66efd02e255db5ecbbdbe797de34c26d3807524893e1e6" }, "downloads": -1, "filename": "altair-2.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "54d190bd43eb97a84c0fd9e9a63ca68d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 372838, "upload_time": "2018-08-14T19:39:51", "url": "https://files.pythonhosted.org/packages/7e/5b/90cfcad70a032e34bfb99a40fe387246d7c993d98b48d2be4702b4564891/altair-2.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4dc7864610640fd81e1aa28ae8cda5df", "sha256": "eb593d296e0e737749a662760a8d704fb2602e38bae84a857e4c5950a76d4290" }, "downloads": -1, "filename": "altair-2.2.0.tar.gz", "has_sig": false, "md5_digest": "4dc7864610640fd81e1aa28ae8cda5df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 327503, "upload_time": "2018-08-14T19:39:53", "url": "https://files.pythonhosted.org/packages/51/04/467634aa4c0b14c1b37b3570d013208f74a155f174cfb97c88916df495fb/altair-2.2.0.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "97465354143eccb500fe6487b9d53601", "sha256": "c4722a22a25c436f4593ea7a964c720371762bf8d86718fc66173b68444fb87b" }, "downloads": -1, "filename": "altair-2.2.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "97465354143eccb500fe6487b9d53601", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 373156, "upload_time": "2018-08-15T16:48:17", "url": "https://files.pythonhosted.org/packages/d2/30/dbc21cda3dc0e7ef91159b45ab904142822abde400c9df2fef3a6e7a563b/altair-2.2.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e91d3c72ca45bc132c5f32941628c5fa", "sha256": "dd5c3df913d4936c337ebfa5d2254844e47da2fca048bcd02d0b798b7a0e0ae7" }, "downloads": -1, "filename": "altair-2.2.1.tar.gz", "has_sig": false, "md5_digest": "e91d3c72ca45bc132c5f32941628c5fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 327953, "upload_time": "2018-08-15T16:48:19", "url": "https://files.pythonhosted.org/packages/45/0a/a2b1682ff15f68bc3c8a09e1034988af31a9cb712ae1376f74edae8f5e8d/altair-2.2.1.tar.gz" } ], "2.2.2": [ { "comment_text": "", "digests": { "md5": "f7a93ada179642b1b75066fa05173ef5", "sha256": "6bdbc62a9b3fc22212e548a2a5f068c0dd378a9f5d99f1016346d7637894cfa9" }, "downloads": -1, "filename": "altair-2.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f7a93ada179642b1b75066fa05173ef5", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 387067, "upload_time": "2018-08-17T17:57:37", "url": "https://files.pythonhosted.org/packages/a4/02/d0ad006918024f8c1509a7f76e94e5e3bdb102ed58da160d3dcfb621fc33/altair-2.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0b9b21f09797a7dec801ba284a40ce7e", "sha256": "c158699026eb5a19f95c1ca742e2e82bc20c27013ef5785f10836283e2233f8a" }, "downloads": -1, "filename": "altair-2.2.2.tar.gz", "has_sig": false, "md5_digest": "0b9b21f09797a7dec801ba284a40ce7e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 327655, "upload_time": "2018-08-17T17:57:40", "url": "https://files.pythonhosted.org/packages/fa/03/18e4435c766d5db6376bd8f72a12780a9a6bc475e4904dbcc0b9acb56deb/altair-2.2.2.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "4b2a692e1042d207c36467adfc636b43", "sha256": "18f894576c4e9fc958dde1d7cdcb2bc148b374d5cf99224a0ab7b31476e19769" }, "downloads": -1, "filename": "altair-2.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4b2a692e1042d207c36467adfc636b43", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 392976, "upload_time": "2018-12-07T17:09:15", "url": "https://files.pythonhosted.org/packages/50/e3/9c7a9e2da9889be611f676983971dfb691be4ebeddeaf33bd7ec3769ee8b/altair-2.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "45961256dd7f56a242bc99324aca3526", "sha256": "9f4bc7cd132c0005deb6b36c7041ee213a69bbdfcd8c0b1a9f1ae8c1fba733f6" }, "downloads": -1, "filename": "altair-2.3.0.tar.gz", "has_sig": false, "md5_digest": "45961256dd7f56a242bc99324aca3526", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 334853, "upload_time": "2018-12-07T17:09:17", "url": "https://files.pythonhosted.org/packages/76/bd/ff63896863a5b33c573c40d81122547c53bc1052ce3bf337172b46d2f322/altair-2.3.0.tar.gz" } ], "2.4.1": [ { "comment_text": "", "digests": { "md5": "49bc06e0b1f6c8785cbe4322ff5196d7", "sha256": "1fffa057bada5474d733641043edb64182beff71faa2a1b0e68f07f575ebed7c" }, "downloads": -1, "filename": "altair-2.4.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "49bc06e0b1f6c8785cbe4322ff5196d7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 398771, "upload_time": "2019-02-21T21:51:23", "url": "https://files.pythonhosted.org/packages/3d/33/69f250e647ca16057a1256fbdb3828fb3f25df1a71b885df8e3f4986b263/altair-2.4.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6c3b5c368b026338ed6369aadd577446", "sha256": "ec62eb75df5adb619b9651dbefbdc130e37004508c7ca48da21863100ab114d3" }, "downloads": -1, "filename": "altair-2.4.1.tar.gz", "has_sig": false, "md5_digest": "6c3b5c368b026338ed6369aadd577446", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 341404, "upload_time": "2019-02-21T21:51:25", "url": "https://files.pythonhosted.org/packages/cc/bd/d13aa4c690474cd43aa21aaf5c4b167f49724491c5bc07d9bfa86cfb648b/altair-2.4.1.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "5759f42a712d42df4367ab028826c743", "sha256": "0c19c3351f6afe7f7e419c340401533b4b886f2e55f826d02b9e3e2f9e637624" }, "downloads": -1, "filename": "altair-3.0.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5759f42a712d42df4367ab028826c743", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 588677, "upload_time": "2019-04-26T17:00:39", "url": "https://files.pythonhosted.org/packages/33/33/0d8fb84146abf1e5f01e88d438723f615f4cf12da18be3adcd8119423873/altair-3.0.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5c3c1544b509e6810eb31a0a1a95c08e", "sha256": "446cc19c55e321a5779196e6d19d304ac4c8a81c00350e1bb2541b157ba89f74" }, "downloads": -1, "filename": "altair-3.0.0.tar.gz", "has_sig": false, "md5_digest": "5c3c1544b509e6810eb31a0a1a95c08e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 523766, "upload_time": "2019-04-26T17:00:42", "url": "https://files.pythonhosted.org/packages/c6/24/d7e80704487ee9ad6ee5465e1fbcc6427b29ef2d10d5e5976bfbeea0546e/altair-3.0.0.tar.gz" } ], "3.0.0rc1": [ { "comment_text": "", "digests": { "md5": "f54e0998ae48d6fbfa49bac36d249e3a", "sha256": "bd5341710042aba4a06349720845b976a1c24d22bfe2e230a0ba70bfe24bea24" }, "downloads": -1, "filename": "altair-3.0.0rc1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f54e0998ae48d6fbfa49bac36d249e3a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 580209, "upload_time": "2019-03-27T15:31:23", "url": "https://files.pythonhosted.org/packages/e6/08/7d2a02b80269dea1f2a35323eb6e567be5c1a9386fff2a4b72759cac67c3/altair-3.0.0rc1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6bb1be1de4a37e2cae30fe5b929096ab", "sha256": "9dcea3705ddc23c22e2d9f4c2aa66b5f2df68b22700b75b05456b5e8789ba1fc" }, "downloads": -1, "filename": "altair-3.0.0rc1.tar.gz", "has_sig": false, "md5_digest": "6bb1be1de4a37e2cae30fe5b929096ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 517129, "upload_time": "2019-03-27T15:31:25", "url": "https://files.pythonhosted.org/packages/d7/28/5433a34ea4bb22b130665327175e077b8794c7a6f89cb38e1095a652f086/altair-3.0.0rc1.tar.gz" } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "43b8e8c1d236ff3214991373c2403d71", "sha256": "65e243afa6da5b746c411890fd7dfd0f187c0f8e581cf3c34b07339712cf6627" }, "downloads": -1, "filename": "altair-3.0.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "43b8e8c1d236ff3214991373c2403d71", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 588678, "upload_time": "2019-05-02T02:22:29", "url": "https://files.pythonhosted.org/packages/ff/71/019f3ca69e579acfa597179e95d96e30d5be2f5b0d9dd1a1dcbc9b02c759/altair-3.0.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5f88e62ce04d7032da2ee6efdbb81caa", "sha256": "63934563a7a7b7186335858206a0b9be6043163b8b54a26cd3b3299a9e5e391f" }, "downloads": -1, "filename": "altair-3.0.1.tar.gz", "has_sig": false, "md5_digest": "5f88e62ce04d7032da2ee6efdbb81caa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 523819, "upload_time": "2019-05-02T02:22:31", "url": "https://files.pythonhosted.org/packages/b4/63/10dfa60173575d8bfce9d4e956507058c3dcf897af4c9bf6d00a2c87d055/altair-3.0.1.tar.gz" } ], "3.1.0": [ { "comment_text": "", "digests": { "md5": "d62972750cd7b4ecff3ffbee57171b05", "sha256": "f711ca44cc569eaec5ae8eafa610146c18b23a0ba4f7b9900646b28c42c13b9f" }, "downloads": -1, "filename": "altair-3.1.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d62972750cd7b4ecff3ffbee57171b05", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 577920, "upload_time": "2019-06-06T14:52:10", "url": "https://files.pythonhosted.org/packages/47/ff/965f48420a6403c88d15706e780b77741f925bec227407132697b7b49ce0/altair-3.1.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bff0722c29fdfb76676e90381017def3", "sha256": "77bf6baee04135cc37a20edd07820163336e2d2bb240804473e80dbefcb4bffd" }, "downloads": -1, "filename": "altair-3.1.0.tar.gz", "has_sig": false, "md5_digest": "bff0722c29fdfb76676e90381017def3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 512322, "upload_time": "2019-06-06T14:52:12", "url": "https://files.pythonhosted.org/packages/cd/97/3941156599815031c77eaeff13bee4fdf076e6f67e46145c3edf1d0f8c5b/altair-3.1.0.tar.gz" } ], "3.2.0": [ { "comment_text": "", "digests": { "md5": "c34e32fe05e847c0ea19acf42616036f", "sha256": "bd8f42b487ffb67bdb1d2ae7970df69c0801431c9201742599525037bc8bd56d" }, "downloads": -1, "filename": "altair-3.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c34e32fe05e847c0ea19acf42616036f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 596309, "upload_time": "2019-08-06T03:11:01", "url": "https://files.pythonhosted.org/packages/34/24/3e50e226a79db1bb1427bf8c58cc4dc7c2f74c39b728af005f4b11d1760c/altair-3.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "abc8cc55122523e1ddc61d879348e381", "sha256": "9abe13d88a3694857138ac61512c4f873f762f432cf82623eea4700d2a531525" }, "downloads": -1, "filename": "altair-3.2.0.tar.gz", "has_sig": false, "md5_digest": "abc8cc55122523e1ddc61d879348e381", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 531980, "upload_time": "2019-08-06T03:11:04", "url": "https://files.pythonhosted.org/packages/a9/f6/12848b50e0cadf7da7eebaa21a5a018f06996810adc85fb7c7d6f3388e42/altair-3.2.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "c34e32fe05e847c0ea19acf42616036f", "sha256": "bd8f42b487ffb67bdb1d2ae7970df69c0801431c9201742599525037bc8bd56d" }, "downloads": -1, "filename": "altair-3.2.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c34e32fe05e847c0ea19acf42616036f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 596309, "upload_time": "2019-08-06T03:11:01", "url": "https://files.pythonhosted.org/packages/34/24/3e50e226a79db1bb1427bf8c58cc4dc7c2f74c39b728af005f4b11d1760c/altair-3.2.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "abc8cc55122523e1ddc61d879348e381", "sha256": "9abe13d88a3694857138ac61512c4f873f762f432cf82623eea4700d2a531525" }, "downloads": -1, "filename": "altair-3.2.0.tar.gz", "has_sig": false, "md5_digest": "abc8cc55122523e1ddc61d879348e381", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 531980, "upload_time": "2019-08-06T03:11:04", "url": "https://files.pythonhosted.org/packages/a9/f6/12848b50e0cadf7da7eebaa21a5a018f06996810adc85fb7c7d6f3388e42/altair-3.2.0.tar.gz" } ] }