lets-plot


Namelets-plot JSON
Version 4.3.2 PyPI version JSON
download
home_pagehttps://lets-plot.org
SummaryAn open source library for statistical plotting
upload_time2024-04-25 15:36:24
maintainerJetBrains
docs_urlNone
authorJetBrains
requires_pythonNone
licenseMIT
keywords ggplot ggplot2 geospatial geopandas geocoding
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            # Lets-Plot

[![official JetBrains project](http://jb.gg/badges/official-flat-square.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
[![License MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://raw.githubusercontent.com/JetBrains/lets-plot-kotlin/master/LICENSE)
[![Latest Release](https://img.shields.io/github/v/release/JetBrains/lets-plot)](https://github.com/JetBrains/lets-plot-kotlin/releases/latest)


**Lets-Plot** is a multiplatform plotting library built on the principles of the Grammar of Graphics. 

The library' design is heavily influenced by Leland Wilkinson work [The Grammar of Graphics](https://www.goodreads.com/book/show/2549408.The_Grammar_of_Graphics) describing the deep features that underlie all statistical graphics.

> This grammar [...] is made up of a set of independent components that can be composed in many different ways. This makes [it] very powerful because you are not limited to a set of pre-specified graphics, but you can create new graphics that are precisely tailored for your problem.
> - Hadley Wickham, "[ggplot2: Elegant Graphics for Data Analysis](https://ggplot2-book.org/index.html)"


## Grammar of Graphics for Python [![Latest Release](https://badge.fury.io/py/lets-plot.svg)](https://pypi.org/project/lets-plot)

A bridge between R (ggplot2) and Python data visualization. \
To learn more see the documentation site at **[lets-plot.org](https://lets-plot.org)**.          


## Grammar of Graphics for Kotlin [![Latest Release](https://img.shields.io/github/v/release/JetBrains/lets-plot-kotlin)](https://github.com/JetBrains/lets-plot-kotlin/releases/latest)

### Notebooks
Create plots in [Kotlin Notebook](https://plugins.jetbrains.com/plugin/16340-kotlin-notebook),
[Datalore](https://datalore.jetbrains.com/report/static/HZqq77cegYd.E7get_WnChZ/aTA9lQnPkRwdCzT6uy95GZ), [Jupyter with Kotlin Kernel](https://github.com/Kotlin/kotlin-jupyter#readme) \
or any other notebook that supports `Kotlin Kernel`. \
To learn more see the **[Lets-Plot Kotlin API](https://github.com/JetBrains/lets-plot-kotlin)** project at GitHub.

### Compose Multiplatform
Embed Lets-Plot charts in [Compose Multiplatform](https://github.com/JetBrains/compose-multiplatform) applications. \
To learn more see the **[Lets-Plot Skia Frontend](https://github.com/JetBrains/lets-plot-skia)** project at GitHub.

### JVM and Kotlin/JS
Embed Lets-Plot charts in JVM (Swing, JavaFX) and Kotlin/JS applications. <br>
To learn more see the **[Lets-Plot Kotlin API](https://github.com/JetBrains/lets-plot-kotlin)** project at GitHub.

## "Lets-Plot in SciView" plugin

[![JetBrains Plugins](https://img.shields.io/jetbrains/plugin/v/14379-lets-plot-in-sciview.svg)](http://plugins.jetbrains.com/plugin/14379-lets-plot-in-sciview)
[![JetBrains plugins](https://img.shields.io/jetbrains/plugin/d/14379-lets-plot-in-sciview.svg)](http://plugins.jetbrains.com/plugin/14379-lets-plot-in-sciview)

*Scientific mode* in PyCharm and in IntelliJ IDEA provides support for interactive scientific computing and data visualization.

[*Lets-Plot in SciView*](https://plugins.jetbrains.com/plugin/14379-lets-plot-in-sciview) plugin adds 
support for interactive plotting to IntelliJ-based IDEs with the *Scientific mode* enabled.
 
>
> **Note:** The *Scientific mode* is NOT available in communinty editions of JetBrains IDEs. 
>

Also read:

- [Scientific mode in PyCharm](https://www.jetbrains.com/help/pycharm/matplotlib-support.html)
- [Scientific mode in IntelliJ IDEA](https://www.jetbrains.com/help/idea/matplotlib-support.html)

## What is new in 4.3.0

- #### `coord_polar()`

    The polar coordinate system is most commonly used for pie charts, but</br>
    it can also be used for constructing **Spider or Radar charts** using the `flat` option.
    
    <br>
    <img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/polar_coord_pie.png" alt="f-24a/images/polar_coord_pie.png" width="256" height="214">
    <img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/radar_chart.png" alt="f-24a/images/radar_chart.png" width="256" height="196">
    
    See: [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24a/coord_polar.ipynb).  

- #### In the `theme()`:

    - `panel_inset`  parameter - primarily used for plots with polar coordinates.
    
        See: [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24a/theme_panel_inset.ipynb).
    
    - `panel_border_ontop` parameter - enables the drawing of panel border on top of the plot geoms.
    - `panel_grid_ontop, panel_grid_ontop_x, panel_grid_ontop_y` parameters - enable the drawing of grid lines on top of the plot geoms.

- #### `geom_curve()` 

    <br>
    <img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/curve_annotation.png" alt="f-24a/images/curve_annotation.png" width="338" height="296">
    
    See: [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24a/geom_curve.ipynb).

- #### [**UNIQUE**] Visualizing Graph-like Data with `geom_segment()` and `geom_curve()`

  - Aesthetics `size_start, size_end, stroke_start` and `stroke_end` enable better alignment of</br>
    segments/curves with nodes of the graph by considering the size of the nodes.

  - The `spacer` parameter allows for additional manual fine-tuning.

    <br>
    <img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/graph_simple.png" alt="f-24a/images/graph_simple.png" width="256" height="168">
    <img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/graph_on_map.png" alt="f-24a/images/graph_on_map.png" width="256" height="184">

  See:
  - [A simple graph example](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24a/graph_edges.ipynb)
  - [An interactive map example](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24a/geom_curve_on_map.ipynb)
  

- #### The `alpha_stroke` Parameter in `geom_label()`

  Use the `alpha_stroke` parameter to apply `alpha` to entire `label`. By default, `alpha` is only applied to the label background.

  See: [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24a/geom_label_alpha_stroke.ipynb).

- #### Showing Plots in External Browser

  The [setup_show_ext()](https://lets-plot.org/python/pages/api/lets_plot.LetsPlot.html#lets_plot.LetsPlot.setup_show_ext) directive allows plots to be displayed in an external browser window.
                                          
## Recent Updates in the [Gallery](https://lets-plot.org/python/pages/gallery.html)

  <a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/venn_diagram.ipynb">
    <img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24b/images/gal_venn_diagram.png" alt="f-24b/images/gal_venn_diagram.png" width="128" height="128">
  </a>
  <a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/cookbook/geom_spoke.ipynb">
    <img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24b/images/gal_spoke.png" alt="f-24b/images/gal_spoke.png" width="128" height="128">
  </a>
  <a href="https://www.kaggle.com/code/alshan/indonesia-volcanoes-on-map">
    <img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24b/images/gal_indonesia_volcanoes_on_map.png" alt="f-24b/images/gal_indonesia_volcanoes_on_map.png" width="128" height="128">
  </a>
  <a href="https://www.kaggle.com/code/alshan/japanese-volcanoes-on-map">
    <img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24b/images/gal_japanese_volcanoes_on_map.png" alt="f-24b/images/gal_japanese_volcanoes_on_map.png" width="128" height="128">
  </a>
  <a href="https://nextjournal.com/asmirnov-horis/bbc-visual-and-data-journalism-cookbook-for-lets-plot">
    <img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/gal_bbc_cookbook.png" alt="f-24a/images/gal_bbc_cookbook.png" width="128" height="128">
  </a>
  <a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/palmer_penguins.ipynb">
    <img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/gal_penguins.png" alt="f-24a/images/gal_penguins.png" width="128" height="128">
  </a>
  <a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/periodic_table.ipynb">
    <img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/gal_periodic_table.png" alt="f-24a/images/gal_periodic_table.png" width="128" height="128">
  </a>
  <a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/wind_rose.ipynb">
    <img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/gal_wind_rose.png" alt="f-24a/images/gal_wind_rose.png" width="128" height="128">
  </a>
  <a href="https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/heatmap_in_polar_coord.ipynb">
    <img src="https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/gal_polar_heatmap.png" alt="f-24a/images/gal_polar_heatmap.png" width="128" height="128">
  </a>

## Change Log

See [CHANGELOG.md](https://github.com/JetBrains/lets-plot/blob/master/CHANGELOG.md) for other changes and fixes.


## Code of Conduct

This project and the corresponding community are governed by the
[JetBrains Open Source and Community Code of Conduct](https://confluence.jetbrains.com/display/ALL/JetBrains+Open+Source+and+Community+Code+of+Conduct).
Please make sure you read it.


## License

Code and documentation released under the [MIT license](https://github.com/JetBrains/lets-plot/blob/master/LICENSE).
Copyright © 2019-2024, JetBrains s.r.o.

            

Raw data

            {
    "_id": null,
    "home_page": "https://lets-plot.org",
    "name": "lets-plot",
    "maintainer": "JetBrains",
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": "lets-plot@jetbrains.com",
    "keywords": "ggplot, ggplot2, geospatial, geopandas, geocoding",
    "author": "JetBrains",
    "author_email": "lets-plot@jetbrains.com",
    "download_url": null,
    "platform": null,
    "description": "# Lets-Plot\n\n[![official JetBrains project](http://jb.gg/badges/official-flat-square.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)\n[![License MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://raw.githubusercontent.com/JetBrains/lets-plot-kotlin/master/LICENSE)\n[![Latest Release](https://img.shields.io/github/v/release/JetBrains/lets-plot)](https://github.com/JetBrains/lets-plot-kotlin/releases/latest)\n\n\n**Lets-Plot** is a multiplatform plotting library built on the principles of the Grammar of Graphics. \n\nThe library' design is heavily influenced by Leland Wilkinson work [The Grammar of Graphics](https://www.goodreads.com/book/show/2549408.The_Grammar_of_Graphics) describing the deep features that underlie all statistical graphics.\n\n> This grammar [...] is made up of a set of independent components that can be composed in many different ways. This makes [it] very powerful because you are not limited to a set of pre-specified graphics, but you can create new graphics that are precisely tailored for your problem.\n> - Hadley Wickham, \"[ggplot2: Elegant Graphics for Data Analysis](https://ggplot2-book.org/index.html)\"\n\n\n## Grammar of Graphics for Python [![Latest Release](https://badge.fury.io/py/lets-plot.svg)](https://pypi.org/project/lets-plot)\n\nA bridge between R (ggplot2) and Python data visualization. \\\nTo learn more see the documentation site at **[lets-plot.org](https://lets-plot.org)**.          \n\n\n## Grammar of Graphics for Kotlin [![Latest Release](https://img.shields.io/github/v/release/JetBrains/lets-plot-kotlin)](https://github.com/JetBrains/lets-plot-kotlin/releases/latest)\n\n### Notebooks\nCreate plots in [Kotlin Notebook](https://plugins.jetbrains.com/plugin/16340-kotlin-notebook),\n[Datalore](https://datalore.jetbrains.com/report/static/HZqq77cegYd.E7get_WnChZ/aTA9lQnPkRwdCzT6uy95GZ), [Jupyter with Kotlin Kernel](https://github.com/Kotlin/kotlin-jupyter#readme) \\\nor any other notebook that supports `Kotlin Kernel`. \\\nTo learn more see the **[Lets-Plot Kotlin API](https://github.com/JetBrains/lets-plot-kotlin)** project at GitHub.\n\n### Compose Multiplatform\nEmbed Lets-Plot charts in [Compose Multiplatform](https://github.com/JetBrains/compose-multiplatform) applications. \\\nTo learn more see the **[Lets-Plot Skia Frontend](https://github.com/JetBrains/lets-plot-skia)** project at GitHub.\n\n### JVM and Kotlin/JS\nEmbed Lets-Plot charts in JVM (Swing, JavaFX) and Kotlin/JS applications. <br>\nTo learn more see the **[Lets-Plot Kotlin API](https://github.com/JetBrains/lets-plot-kotlin)** project at GitHub.\n\n## \"Lets-Plot in SciView\" plugin\n\n[![JetBrains Plugins](https://img.shields.io/jetbrains/plugin/v/14379-lets-plot-in-sciview.svg)](http://plugins.jetbrains.com/plugin/14379-lets-plot-in-sciview)\n[![JetBrains plugins](https://img.shields.io/jetbrains/plugin/d/14379-lets-plot-in-sciview.svg)](http://plugins.jetbrains.com/plugin/14379-lets-plot-in-sciview)\n\n*Scientific mode* in PyCharm and in IntelliJ IDEA provides support for interactive scientific computing and data visualization.\n\n[*Lets-Plot in SciView*](https://plugins.jetbrains.com/plugin/14379-lets-plot-in-sciview) plugin adds \nsupport for interactive plotting to IntelliJ-based IDEs with the *Scientific mode* enabled.\n \n>\n> **Note:** The *Scientific mode* is NOT available in communinty editions of JetBrains IDEs. \n>\n\nAlso read:\n\n- [Scientific mode in PyCharm](https://www.jetbrains.com/help/pycharm/matplotlib-support.html)\n- [Scientific mode in IntelliJ IDEA](https://www.jetbrains.com/help/idea/matplotlib-support.html)\n\n## What is new in 4.3.0\n\n- #### `coord_polar()`\n\n    The polar coordinate system is most commonly used for pie charts, but</br>\n    it can also be used for constructing **Spider or Radar charts** using the `flat` option.\n    \n    <br>\n    <img src=\"https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/polar_coord_pie.png\" alt=\"f-24a/images/polar_coord_pie.png\" width=\"256\" height=\"214\">\n    <img src=\"https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/radar_chart.png\" alt=\"f-24a/images/radar_chart.png\" width=\"256\" height=\"196\">\n    \n    See: [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24a/coord_polar.ipynb).  \n\n- #### In the `theme()`:\n\n    - `panel_inset`  parameter - primarily used for plots with polar coordinates.\n    \n        See: [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24a/theme_panel_inset.ipynb).\n    \n    - `panel_border_ontop` parameter - enables the drawing of panel border on top of the plot geoms.\n    - `panel_grid_ontop, panel_grid_ontop_x, panel_grid_ontop_y` parameters - enable the drawing of grid lines on top of the plot geoms.\n\n- #### `geom_curve()` \n\n    <br>\n    <img src=\"https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/curve_annotation.png\" alt=\"f-24a/images/curve_annotation.png\" width=\"338\" height=\"296\">\n    \n    See: [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24a/geom_curve.ipynb).\n\n- #### [**UNIQUE**] Visualizing Graph-like Data with `geom_segment()` and `geom_curve()`\n\n  - Aesthetics `size_start, size_end, stroke_start` and `stroke_end` enable better alignment of</br>\n    segments/curves with nodes of the graph by considering the size of the nodes.\n\n  - The `spacer` parameter allows for additional manual fine-tuning.\n\n    <br>\n    <img src=\"https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/graph_simple.png\" alt=\"f-24a/images/graph_simple.png\" width=\"256\" height=\"168\">\n    <img src=\"https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/graph_on_map.png\" alt=\"f-24a/images/graph_on_map.png\" width=\"256\" height=\"184\">\n\n  See:\n  - [A simple graph example](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24a/graph_edges.ipynb)\n  - [An interactive map example](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24a/geom_curve_on_map.ipynb)\n  \n\n- #### The `alpha_stroke` Parameter in `geom_label()`\n\n  Use the `alpha_stroke` parameter to apply `alpha` to entire `label`. By default, `alpha` is only applied to the label background.\n\n  See: [example notebook](https://nbviewer.org/github/JetBrains/lets-plot/blob/master/docs/f-24a/geom_label_alpha_stroke.ipynb).\n\n- #### Showing Plots in External Browser\n\n  The [setup_show_ext()](https://lets-plot.org/python/pages/api/lets_plot.LetsPlot.html#lets_plot.LetsPlot.setup_show_ext) directive allows plots to be displayed in an external browser window.\n                                          \n## Recent Updates in the [Gallery](https://lets-plot.org/python/pages/gallery.html)\n\n  <a href=\"https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/venn_diagram.ipynb\">\n    <img src=\"https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24b/images/gal_venn_diagram.png\" alt=\"f-24b/images/gal_venn_diagram.png\" width=\"128\" height=\"128\">\n  </a>\n  <a href=\"https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/cookbook/geom_spoke.ipynb\">\n    <img src=\"https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24b/images/gal_spoke.png\" alt=\"f-24b/images/gal_spoke.png\" width=\"128\" height=\"128\">\n  </a>\n  <a href=\"https://www.kaggle.com/code/alshan/indonesia-volcanoes-on-map\">\n    <img src=\"https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24b/images/gal_indonesia_volcanoes_on_map.png\" alt=\"f-24b/images/gal_indonesia_volcanoes_on_map.png\" width=\"128\" height=\"128\">\n  </a>\n  <a href=\"https://www.kaggle.com/code/alshan/japanese-volcanoes-on-map\">\n    <img src=\"https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24b/images/gal_japanese_volcanoes_on_map.png\" alt=\"f-24b/images/gal_japanese_volcanoes_on_map.png\" width=\"128\" height=\"128\">\n  </a>\n  <a href=\"https://nextjournal.com/asmirnov-horis/bbc-visual-and-data-journalism-cookbook-for-lets-plot\">\n    <img src=\"https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/gal_bbc_cookbook.png\" alt=\"f-24a/images/gal_bbc_cookbook.png\" width=\"128\" height=\"128\">\n  </a>\n  <a href=\"https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/palmer_penguins.ipynb\">\n    <img src=\"https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/gal_penguins.png\" alt=\"f-24a/images/gal_penguins.png\" width=\"128\" height=\"128\">\n  </a>\n  <a href=\"https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/periodic_table.ipynb\">\n    <img src=\"https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/gal_periodic_table.png\" alt=\"f-24a/images/gal_periodic_table.png\" width=\"128\" height=\"128\">\n  </a>\n  <a href=\"https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/wind_rose.ipynb\">\n    <img src=\"https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/gal_wind_rose.png\" alt=\"f-24a/images/gal_wind_rose.png\" width=\"128\" height=\"128\">\n  </a>\n  <a href=\"https://nbviewer.org/github/JetBrains/lets-plot-docs/blob/master/source/examples/demo/heatmap_in_polar_coord.ipynb\">\n    <img src=\"https://raw.githubusercontent.com/JetBrains/lets-plot/master/docs/f-24a/images/gal_polar_heatmap.png\" alt=\"f-24a/images/gal_polar_heatmap.png\" width=\"128\" height=\"128\">\n  </a>\n\n## Change Log\n\nSee [CHANGELOG.md](https://github.com/JetBrains/lets-plot/blob/master/CHANGELOG.md) for other changes and fixes.\n\n\n## Code of Conduct\n\nThis project and the corresponding community are governed by the\n[JetBrains Open Source and Community Code of Conduct](https://confluence.jetbrains.com/display/ALL/JetBrains+Open+Source+and+Community+Code+of+Conduct).\nPlease make sure you read it.\n\n\n## License\n\nCode and documentation released under the [MIT license](https://github.com/JetBrains/lets-plot/blob/master/LICENSE).\nCopyright \u00a9 2019-2024, JetBrains s.r.o.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "An open source library for statistical plotting",
    "version": "4.3.2",
    "project_urls": {
        "Documentation": "https://lets-plot.org",
        "Github": "https://github.com/JetBrains/lets-plot",
        "Homepage": "https://lets-plot.org"
    },
    "split_keywords": [
        "ggplot",
        " ggplot2",
        " geospatial",
        " geopandas",
        " geocoding"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9d576e210d4508601940f73a1ade44201c14629e3d242b9109dbc803053354b",
                "md5": "835e27b27ec9e0c63cae425b3da65896",
                "sha256": "fdf05e7c7f715823e0fb15429b8c3d602b5aedfa9a6b4510c3fffa89ba427972"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "835e27b27ec9e0c63cae425b3da65896",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3081567,
            "upload_time": "2024-04-25T15:36:24",
            "upload_time_iso_8601": "2024-04-25T15:36:24.396948Z",
            "url": "https://files.pythonhosted.org/packages/a9/d5/76e210d4508601940f73a1ade44201c14629e3d242b9109dbc803053354b/lets_plot-4.3.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7783edd47e410bbc7e05f5de99d663c3b63b30de0b0f17289df5f4da4fd0a73",
                "md5": "d4823b6f1610566978dd2998e303f6c5",
                "sha256": "9317a695049b7547c95581d9cb7695e2e5598aac448d3591193ed44c80595fec"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d4823b6f1610566978dd2998e303f6c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3052864,
            "upload_time": "2024-04-25T15:36:18",
            "upload_time_iso_8601": "2024-04-25T15:36:18.960127Z",
            "url": "https://files.pythonhosted.org/packages/f7/78/3edd47e410bbc7e05f5de99d663c3b63b30de0b0f17289df5f4da4fd0a73/lets_plot-4.3.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9310dc2aaf4881a040c9820d64d87633a9fdab0254e97d23ae6e44f7cf629eba",
                "md5": "7775ec1139fa3943aaa59e967eaf0ad4",
                "sha256": "d1cdc0c1d3118859609ccddf9916e2a2b5821abd9aa273ecb1951e716c293a17"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7775ec1139fa3943aaa59e967eaf0ad4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2970857,
            "upload_time": "2024-04-25T15:34:46",
            "upload_time_iso_8601": "2024-04-25T15:34:46.693261Z",
            "url": "https://files.pythonhosted.org/packages/93/10/dc2aaf4881a040c9820d64d87633a9fdab0254e97d23ae6e44f7cf629eba/lets_plot-4.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "761826b461bd5c894865b5d46e4add74d8fcef8ffa68da3c2bf8d132eaba2cd2",
                "md5": "701190be8dc2ced98b4baac3a54f3868",
                "sha256": "f86af45faea3dab4abe49c25b85330be6307b820edc764eeeba4cc5f5cb7ea38"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "701190be8dc2ced98b4baac3a54f3868",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 3013509,
            "upload_time": "2024-04-25T15:34:17",
            "upload_time_iso_8601": "2024-04-25T15:34:17.555994Z",
            "url": "https://files.pythonhosted.org/packages/76/18/26b461bd5c894865b5d46e4add74d8fcef8ffa68da3c2bf8d132eaba2cd2/lets_plot-4.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c77030292a1277a57db8c63c6c491a7d5b916bb6040615eb5c1d2b7e4f51c399",
                "md5": "3b608e49ebf52dd859150481bda39166",
                "sha256": "79177f66bfebd219f3189df3f6a5c9fb7f41318717461fc0395ed6e2e4ebf471"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3b608e49ebf52dd859150481bda39166",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2528056,
            "upload_time": "2024-04-25T15:31:02",
            "upload_time_iso_8601": "2024-04-25T15:31:02.961112Z",
            "url": "https://files.pythonhosted.org/packages/c7/70/30292a1277a57db8c63c6c491a7d5b916bb6040615eb5c1d2b7e4f51c399/lets_plot-4.3.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d0c615e27d664d030e853766afc719514ab615571ecd3a6523fd7a1361961f3",
                "md5": "e9c0f37cba75d05d4b8f5e74cca9c8fb",
                "sha256": "588e90175400a92f4a655b164b7c9a4862ea4641306d93bebfa35ffd14808564"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e9c0f37cba75d05d4b8f5e74cca9c8fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 3081564,
            "upload_time": "2024-04-25T15:36:14",
            "upload_time_iso_8601": "2024-04-25T15:36:14.568184Z",
            "url": "https://files.pythonhosted.org/packages/9d/0c/615e27d664d030e853766afc719514ab615571ecd3a6523fd7a1361961f3/lets_plot-4.3.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "62e3c8a3c655ae13e1a327ac4657377b131f7ac2d6d9207e5d660ef952b60a02",
                "md5": "5e206106ee5abe70e3ee91749d1d0708",
                "sha256": "cb44952f60e2f929b1268136fbb37dccc39dae10482063dd6df1e4dd26650da1"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5e206106ee5abe70e3ee91749d1d0708",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 3052866,
            "upload_time": "2024-04-25T15:36:33",
            "upload_time_iso_8601": "2024-04-25T15:36:33.183665Z",
            "url": "https://files.pythonhosted.org/packages/62/e3/c8a3c655ae13e1a327ac4657377b131f7ac2d6d9207e5d660ef952b60a02/lets_plot-4.3.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1451ac315b572e6a289894225b0bb591082150f0791179a228782026d00f7c77",
                "md5": "38ff84b19473fdb0c6c406d1d4b27e0f",
                "sha256": "ddc3e215532548d4edfa79f077c9c45d87b8bce7f365b5174cdff787f30765ad"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "38ff84b19473fdb0c6c406d1d4b27e0f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2970878,
            "upload_time": "2024-04-25T15:34:33",
            "upload_time_iso_8601": "2024-04-25T15:34:33.079577Z",
            "url": "https://files.pythonhosted.org/packages/14/51/ac315b572e6a289894225b0bb591082150f0791179a228782026d00f7c77/lets_plot-4.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4f6af3a5e3f6667a3a3f43f3868eb1ef9182dd2ce55bd2e19462cbe3006227f8",
                "md5": "3e70d34c3d1d0fe3c74880a5a6bcbf7a",
                "sha256": "ab337bbc1a3d1f79ccbd468a2f52d78d78f97f53d34c0d14a20a70d90d2803a7"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3e70d34c3d1d0fe3c74880a5a6bcbf7a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 3013530,
            "upload_time": "2024-04-25T15:34:38",
            "upload_time_iso_8601": "2024-04-25T15:34:38.930128Z",
            "url": "https://files.pythonhosted.org/packages/4f/6a/f3a5e3f6667a3a3f43f3868eb1ef9182dd2ce55bd2e19462cbe3006227f8/lets_plot-4.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81c147db3f015d946d0cbaa3807b9dc1b1b3dd834afe4f554b282f9cba9fc22b",
                "md5": "ee6f3919b353673556eecc9b367e75d3",
                "sha256": "c612446723948c4df0ecf63b1a30dfe12858733582765df05be6be8c29cc247a"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ee6f3919b353673556eecc9b367e75d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2528104,
            "upload_time": "2024-04-25T15:31:11",
            "upload_time_iso_8601": "2024-04-25T15:31:11.641246Z",
            "url": "https://files.pythonhosted.org/packages/81/c1/47db3f015d946d0cbaa3807b9dc1b1b3dd834afe4f554b282f9cba9fc22b/lets_plot-4.3.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "15c5d8011fef112be07098876b294d45b982505a6096b644eedd623edec97cee",
                "md5": "1ed0f3c1298341f3b1aa8cc311185ccc",
                "sha256": "938477f1b59ce35e85489b95ea9fa7ad3af07dfb657f57039124f9fdc7b19e49"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1ed0f3c1298341f3b1aa8cc311185ccc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 3081656,
            "upload_time": "2024-04-25T15:36:16",
            "upload_time_iso_8601": "2024-04-25T15:36:16.729274Z",
            "url": "https://files.pythonhosted.org/packages/15/c5/d8011fef112be07098876b294d45b982505a6096b644eedd623edec97cee/lets_plot-4.3.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "624b8c38b1cf58f241f2cfa3a1dc28bde90932e3d4124390e0b7aaa56ba6c974",
                "md5": "6b996eb2f0011d91ed4f0b1b790eb3fd",
                "sha256": "1bf28759a737d29ebfdae2c96da9c1a6fd884df93b9536bdfc67eb2015a6b083"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "6b996eb2f0011d91ed4f0b1b790eb3fd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 3052910,
            "upload_time": "2024-04-25T15:36:26",
            "upload_time_iso_8601": "2024-04-25T15:36:26.319494Z",
            "url": "https://files.pythonhosted.org/packages/62/4b/8c38b1cf58f241f2cfa3a1dc28bde90932e3d4124390e0b7aaa56ba6c974/lets_plot-4.3.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8769309176634c9790b243eb86c606a4384b70d354ff2792b8271bc92fc5daf1",
                "md5": "41e25871dc1ecb6d4628e769207b5504",
                "sha256": "65e8963727c364a7213dc848a8062be6c4c73f5b98577f536ec00f367017aad8"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "41e25871dc1ecb6d4628e769207b5504",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2971087,
            "upload_time": "2024-04-25T15:34:24",
            "upload_time_iso_8601": "2024-04-25T15:34:24.349610Z",
            "url": "https://files.pythonhosted.org/packages/87/69/309176634c9790b243eb86c606a4384b70d354ff2792b8271bc92fc5daf1/lets_plot-4.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d08a3c7705852ee7c0cf3f9331a5b7aa55c71fbd7b2c28c5b4090d36d89e2a1",
                "md5": "6d5c739cb59809795105f1568d747d51",
                "sha256": "08d1572d529c60ab857c49afdbab541373b04a4b98beac9780c91bb9cd0a75c9"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6d5c739cb59809795105f1568d747d51",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 3013662,
            "upload_time": "2024-04-25T15:34:36",
            "upload_time_iso_8601": "2024-04-25T15:34:36.381535Z",
            "url": "https://files.pythonhosted.org/packages/2d/08/a3c7705852ee7c0cf3f9331a5b7aa55c71fbd7b2c28c5b4090d36d89e2a1/lets_plot-4.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40914cda9202d446e5d0350d74a75d21b0387bb8c55faaf9804b9b8deaeb3fb0",
                "md5": "3be112dc18bedda9b72eddf85cd86ce5",
                "sha256": "7fb3b76196510339b49a8d0acc521fde33549685ae619183d3b1fd85db37e5aa"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3be112dc18bedda9b72eddf85cd86ce5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 2528303,
            "upload_time": "2024-04-25T15:31:28",
            "upload_time_iso_8601": "2024-04-25T15:31:28.136941Z",
            "url": "https://files.pythonhosted.org/packages/40/91/4cda9202d446e5d0350d74a75d21b0387bb8c55faaf9804b9b8deaeb3fb0/lets_plot-4.3.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0febaa7f606521623a188b0580cd6a85a16c277f5b3dc2b8ded9dc3f5c93a0a8",
                "md5": "4c60f2d841e2da42dda038acdc6e14cd",
                "sha256": "01d75a0216175a3424d818ed2befe4f301467142271b1a247e04339acc33ffd5"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4c60f2d841e2da42dda038acdc6e14cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 3081871,
            "upload_time": "2024-04-25T15:36:12",
            "upload_time_iso_8601": "2024-04-25T15:36:12.403342Z",
            "url": "https://files.pythonhosted.org/packages/0f/eb/aa7f606521623a188b0580cd6a85a16c277f5b3dc2b8ded9dc3f5c93a0a8/lets_plot-4.3.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d178b24caa96cedd483aef0c9ba27da80f70ffa271afab76baa2f5b0a106586f",
                "md5": "d14e5d9969e7124a0439c76795c60f06",
                "sha256": "dd7fbb95acce68b4cbcdd56fc99ff94656b257522496031f152e5c2eec6f7be7"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d14e5d9969e7124a0439c76795c60f06",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2971416,
            "upload_time": "2024-04-25T15:34:49",
            "upload_time_iso_8601": "2024-04-25T15:34:49.325778Z",
            "url": "https://files.pythonhosted.org/packages/d1/78/b24caa96cedd483aef0c9ba27da80f70ffa271afab76baa2f5b0a106586f/lets_plot-4.3.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ad7f5a19aaf747a72ad64ac13c6211841be6a8e01619b43d3ac9f542b7385032",
                "md5": "6cd1bfa123a1dd8703e575cda0168697",
                "sha256": "fef17d5442415a8cd302f0e71d448d75535b06cd699e4097f1dc24da0ec1d8ca"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6cd1bfa123a1dd8703e575cda0168697",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 3013778,
            "upload_time": "2024-04-25T15:34:29",
            "upload_time_iso_8601": "2024-04-25T15:34:29.818443Z",
            "url": "https://files.pythonhosted.org/packages/ad/7f/5a19aaf747a72ad64ac13c6211841be6a8e01619b43d3ac9f542b7385032/lets_plot-4.3.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08255257344e2aa4b1cc64ecb6f1d18c432b7f76bd050d1c8cf620125ea83412",
                "md5": "a8f2625ace258d39402213865ecaa962",
                "sha256": "0c1f14d739322d252c451e0cd0e3e8fdc31177d10728aaa0d5f4201cef5b9343"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a8f2625ace258d39402213865ecaa962",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2528075,
            "upload_time": "2024-04-25T15:31:35",
            "upload_time_iso_8601": "2024-04-25T15:31:35.979512Z",
            "url": "https://files.pythonhosted.org/packages/08/25/5257344e2aa4b1cc64ecb6f1d18c432b7f76bd050d1c8cf620125ea83412/lets_plot-4.3.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "440af2188b71c661c9f1597141fee2c42cc10032e3272a3ef1151353b2202ede",
                "md5": "5739356cd84105846ef834ceae574576",
                "sha256": "4c586261db1d88680e1ac6f4d506e5c971ef6e148163880ef091cdfb2b60cad5"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5739356cd84105846ef834ceae574576",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 3081700,
            "upload_time": "2024-04-25T15:36:28",
            "upload_time_iso_8601": "2024-04-25T15:36:28.212427Z",
            "url": "https://files.pythonhosted.org/packages/44/0a/f2188b71c661c9f1597141fee2c42cc10032e3272a3ef1151353b2202ede/lets_plot-4.3.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0eba254c5880d771e5d5c91505300e86c70dac38e165f2c26d48ef6eee7828e7",
                "md5": "79b067882a49c8388d860a45b3cebc94",
                "sha256": "6498105dd9bee87cf0a599ecd851a0a8ede0781455c23ef2b8d6c9dba914ec8d"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "79b067882a49c8388d860a45b3cebc94",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 3052918,
            "upload_time": "2024-04-25T15:36:22",
            "upload_time_iso_8601": "2024-04-25T15:36:22.566707Z",
            "url": "https://files.pythonhosted.org/packages/0e/ba/254c5880d771e5d5c91505300e86c70dac38e165f2c26d48ef6eee7828e7/lets_plot-4.3.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06b16b0b178a0332756b9d9f7222e8e212fe4797748eed6b14507aa8bcb47867",
                "md5": "a75e2ad136a83deaf7830987ab312e30",
                "sha256": "c65e713eef2dbf32011da29d7532b55da5eb33d3a3a82f838618b74e578948ac"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "a75e2ad136a83deaf7830987ab312e30",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2971393,
            "upload_time": "2024-04-25T15:34:26",
            "upload_time_iso_8601": "2024-04-25T15:34:26.819370Z",
            "url": "https://files.pythonhosted.org/packages/06/b1/6b0b178a0332756b9d9f7222e8e212fe4797748eed6b14507aa8bcb47867/lets_plot-4.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f21745ccd17f591fba5cdd848704ddc8c7c14daad9881e911bbad6871f9ea6c",
                "md5": "2ab306a46aa738d2400a8cc14377c5d7",
                "sha256": "3b0b5f9db6e0a9b81ac656b5921b2c82cb1c8859b59e0a518e82fe598b02519c"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "2ab306a46aa738d2400a8cc14377c5d7",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 3013816,
            "upload_time": "2024-04-25T15:34:41",
            "upload_time_iso_8601": "2024-04-25T15:34:41.315587Z",
            "url": "https://files.pythonhosted.org/packages/2f/21/745ccd17f591fba5cdd848704ddc8c7c14daad9881e911bbad6871f9ea6c/lets_plot-4.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fcbaaadadd8254958ee9edca2eeae367e39a46d7ff66ccf249326111991ba8ae",
                "md5": "91d7c28e2dd91e75c7f19035024daa71",
                "sha256": "7eb2508cd0f979466decf66fcfea9bf2738cd805420960e163c7ee6f222dd04f"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "91d7c28e2dd91e75c7f19035024daa71",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2528238,
            "upload_time": "2024-04-25T15:31:42",
            "upload_time_iso_8601": "2024-04-25T15:31:42.695502Z",
            "url": "https://files.pythonhosted.org/packages/fc/ba/aadadd8254958ee9edca2eeae367e39a46d7ff66ccf249326111991ba8ae/lets_plot-4.3.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1dfe7585ea1d66a82d18e6edfce05389a28554a78cbd767667f18bbf4720fdfb",
                "md5": "f1547381d2d22d1900e0e31a63043a50",
                "sha256": "462253ac7bfb835eeaa65aa875d928bfabc20e340a6ab9a70b9f3be848416e3a"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f1547381d2d22d1900e0e31a63043a50",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 3081554,
            "upload_time": "2024-04-25T15:36:30",
            "upload_time_iso_8601": "2024-04-25T15:36:30.993355Z",
            "url": "https://files.pythonhosted.org/packages/1d/fe/7585ea1d66a82d18e6edfce05389a28554a78cbd767667f18bbf4720fdfb/lets_plot-4.3.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "adc52521975c3d4631cc6c04c7a450645d0e6ff1bbd506ffc2f6710701fa2771",
                "md5": "d3a938b695c6922afa5b7ebe88865ab6",
                "sha256": "2df9759cd981129f8c6876cf0145899a7f75e8379561db8e93fcb7eaf22bc9e0"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d3a938b695c6922afa5b7ebe88865ab6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 3052855,
            "upload_time": "2024-04-25T15:36:20",
            "upload_time_iso_8601": "2024-04-25T15:36:20.803836Z",
            "url": "https://files.pythonhosted.org/packages/ad/c5/2521975c3d4631cc6c04c7a450645d0e6ff1bbd506ffc2f6710701fa2771/lets_plot-4.3.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e059bb6c2d707e421a05d16dbef29c48c5093a3a2ea212d673e0e6ba407cc711",
                "md5": "0279617e671bb4cba16998890def54e9",
                "sha256": "d48a13bd50844b671d3ff8dba06443a974ec4794e3f90c89075ab74e1329a9b7"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0279617e671bb4cba16998890def54e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2970663,
            "upload_time": "2024-04-25T15:34:44",
            "upload_time_iso_8601": "2024-04-25T15:34:44.415987Z",
            "url": "https://files.pythonhosted.org/packages/e0/59/bb6c2d707e421a05d16dbef29c48c5093a3a2ea212d673e0e6ba407cc711/lets_plot-4.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d890f2b841fd8a285419210299e19d651cfca411f51801f7a579adbb723bba05",
                "md5": "cd5b16095f223129a708640aa75afba6",
                "sha256": "6a1043c0888a5adc0a0366e675df077b1b3c0d424fb308b7bd82d29959709dd2"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cd5b16095f223129a708640aa75afba6",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 3013383,
            "upload_time": "2024-04-25T15:34:21",
            "upload_time_iso_8601": "2024-04-25T15:34:21.897008Z",
            "url": "https://files.pythonhosted.org/packages/d8/90/f2b841fd8a285419210299e19d651cfca411f51801f7a579adbb723bba05/lets_plot-4.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c111b55acef3796e76935476992332a690f7c9efcb0d464b39e7d40f7c50483",
                "md5": "530eab2f736721c4ede10889c70a5eef",
                "sha256": "ff042710b2b708d17d6b99b6ed30bc75c5a976c1297a121f253c9bcb8b026f28"
            },
            "downloads": -1,
            "filename": "lets_plot-4.3.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "530eab2f736721c4ede10889c70a5eef",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2528121,
            "upload_time": "2024-04-25T15:31:49",
            "upload_time_iso_8601": "2024-04-25T15:31:49.821003Z",
            "url": "https://files.pythonhosted.org/packages/1c/11/1b55acef3796e76935476992332a690f7c9efcb0d464b39e7d40f7c50483/lets_plot-4.3.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-25 15:36:24",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "JetBrains",
    "github_project": "lets-plot",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "lcname": "lets-plot"
}
        
Elapsed time: 0.26401s