Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python3-altair-4.1.0-bp155.2.11 RPM for noarch

From OpenSuSE Leap 15.5 for noarch

Name: python3-altair Distribution: SUSE Linux Enterprise 15 SP5
Version: 4.1.0 Vendor: openSUSE
Release: bp155.2.11 Build date: Mon May 22 12:15:36 2023
Group: Development/Languages/Python Build host: lamb52
Size: 9201027 Source RPM: python-altair-4.1.0-bp155.2.11.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/altair-viz/altair
Summary: Declarative statistical visualization library for Python
This package provides a Python API for building statistical visualizations
in a declarative manner. This API contains no actual visualization rendering
code, but instead emits JSON data structures following the `Vega-Lite`_
specification. For convenience, Altair can optionally use `ipyvega`_ to
seamlessly display client-side renderings in the Jupyter notebook.

Provides

Requires

License

BSD-3-Clause

Changelog

* Sat Apr 18 2020 Arun Persaud <arun@gmx.de>
  - update to version 4.1.0:
    * Minimum Python version is now 3.6
    * Update Vega-Lite to version 4.8.1; many new features and bug fixes
      from Vega-Lite versions 4.1 through 4.8; see Vega-Lite Release
      Notes.
    * Enhancements
      + strokeDash encoding can now be used to control line styles
      (Example: Multi Series Line Chart)
      + chart.save() now relies on altair_saver for more flexibility
      (#1943).
      + New chart.show() method replaces chart.serve(), and relies on
      altair_viewer to allow offline viewing of charts (#1988).
    * Bug Fixes
      + Support Python 3.8 (#1958)
      + Support multiple views in JupyterLab (#1986)
      + Support numpy types within specifications (#1914)
      + Support pandas nullable ints and string types (#1924)
    * Maintenance
      + Altair now uses black and flake8 for maintaining code quality &
      consistency.
* Thu Jan 30 2020 Todd R <toddrme2178@gmail.com>
  - Update to 4.0.1
    * Support for interactive legends
    * Responsive chart width and height
    * Bins responsive to selections
    * New pivot transform
    * New Regression transform
    * New LOESS transform
    * New density transform
    * Image mark
    * New default html renderer, directly compatible with Jupyter Notebook and
      JupyterLab without the need for frontend extensions, as well as tools like
      nbviewer and nbconvert, and related notebook environments such as Zeppelin,
      Colab, Kaggle Kernels, and DataBricks.
    * Support per-corner radius for bar marks
    * Sort-by-field can now use the encoding name directly
    * The rangeStep argument to :class:Scale and :meth:Chart.configure_scale is deprecated.
      instead, use chart.properties(width={"step": rangeStep}) or
      chart.configure_view(step=rangeStep).
    * align, center, spacing, and columns are no longer valid chart properties, but
      are moved to the encoding classes to which they refer.
* Sun Dec 01 2019 Arun Persaud <arun@gmx.de>
  - update to version 3.3.0:
    * Enhancements
      + Add inheritance structure to low-level schema classes (#1803)
      + Add html renderer which works across frontends (#1793)
      + Support Python 3.8 (#1740, #1781)
      + Add :G shorthand for geojson type (#1714)
      + Add data generator interface: alt.sequence, alt.graticule,
      alt.sphere() (#1667, #1687)
      + Support geographic data sources via __geo_interface__ (#1664)
    * Bug Fixes
      + Support pickle and copy.deepcopy for chart objects (#1805)
      + Fix bug when specifying count() within transform_joinaggregate()
      (#1751)
      + Fix LayerChart.add_selection (#1794)
      + Fix arguments to project() method (#1717)
      + Fix composition of multiple selections (#1707)
* Fri Aug 16 2019 Todd R <toddrme2178@gmail.com>
  - Update to version 3.2.0
    Upgraded to Vega-Lite version 3.4
    + Enhancements
    * Selector values can be used directly in expressions
    * Top-level chart repr is now truncated to improve readability of error
      messages
    + Bug Fixes
    * top-level ``add_selection`` methods now delegate to sub-charts. Previously
      they produced invalid charts
    * Unsupported ``mark_*()`` methods removed from LayerChart
    * New encoding channels are properly parsed
    * Data context is propagated when encodings are specified as lists
    + Backward-Incompatible Changes
    * ``alz.LayerChart`` no longer has ``mark_*()`` methods, because they never
      produced valid chart specifications)
* Tue Jul 23 2019 Todd R <toddrme2178@gmail.com>
  - Update to Version 3.1.0
    Update includes full compatibility with version 3.3 of Vega-Lite.
    + Enhancements
    * Added support for vega themes via ``alt.themes.enable(theme_name)``
    * Added an ``alt.renderers.disable_max_rows()`` method for disabling the
      maximum rows check
    * Improved user-facing warnings/errors around layering and faceting .
    * ``data`` argument is now properly handled by  ``Chart.properties``
    * Compound charts (layer, concat, hconcat, vconcat) now move data to the top
      level by default. In particular, this means that the ``facet()`` method
      can now be called directly on a layered chart without having to change
      how data is specified.
    * ``alt.LayerChart`` now supports ``mark_*()`` methods. If a layer specifies a
      mark at the top level, all child charts will inherit it (unless they override
      it explicitly).
    * ``alt.Chart.facet()`` now handles wrapped facets; for example:
      chart.facet('column_name', columns=5)
    + Bug fixes
    * Make ``chart.serve()`` and ``chart.save()`` respect the data transformer
      setting
    * Fixed a deserialization bug for certain chart specs in schemapi
    + Backward-Incompatible Changes
    * ``alt.Chart.facet()`` now accepts a wrapped facet encoding as a first positional
      argument, rather than a row encoding. The following are examples of old invocations,
      and the equivalent new invocations:
      > ``chart.facet(row='col1', column='col2')``: unchanged
      > ``chart.facet('col1', 'col2')``: change to ``chart.facet(row='col1', column='col2')``
      > ``chart.facet('col1')``: change to ``chart.facet(row='col1')``
      In each case, the new invocations are compatible back to Altair 2.X.
    * Several of the encoding channels added in 3.0 have had their capitalization
      corrected to better match the names used in the schema:
      > ``alt.Fillopacity`` -> ``alt.FillOpacity``
      > ``alt.Strokeopacity`` -> ``alt.StrokeOpacity``
      > ``alt.Strokewidth`` -> ``alt.StrokeWidth``
      > ``alt.Xerror`` -> ``alt.XError``
      > ``alt.Xerror2`` -> ``alt.XError2``
      > ``alt.Yerror`` -> ``alt.YError``
      > ``alt.Yerror2`` -> ``alt.YError2``
  - Update to Version 3.0.1
    * Fix version info bug for HTML output and Colab & Kaggle renderers.
* Mon Apr 29 2019 Todd R <toddrme2178@gmail.com>
  - Uodate to 3.0.0
    * new compound marks: mark_boxplot(), mark_errorband(), mark_errorbar()
    * new transforms: transform_impute(), transform_joinaggregate(), transform_flatten() transform_fold(), transform_sample(), transform_stack()
    * new facet encoding that is similar to the row and column encoding, but allows for wrapped facets
    * new alt.concat() function that is similar to alt.hconcat and alt.vconcat, but allows for more general wrapped concatenation
    * new columns keyword that allows wrapped faceting, repeating, and concatenation.
    * many, many bug fixes
    * tooltips can now be automatically populated using the tooltip mark configuration.
    * ability to specify initial condisions for selections
* Thu Mar 21 2019 Matej Cepl <mcepl@suse.com>
  - Update to 2.4.1:
    - Several documentation cleanups & new examples
    - Fix incompatibility with pandas version 0.24 (#1315)
* Fri Jan 04 2019 Todd R <toddrme2178@gmail.com>
  - Update to version 2.3.0
    * Includes many reworked examples in the example gallery.
    + Enhancements
    * Better errors for non-string column names, as well as automatic conversion
      of ``pandas.RangeIndex`` columns to strings (#1107)
    * Renderers now have set_embed_options() method (#1203)
    * Added kaggle renderer & more HTML output options (#1123)
    + Maintenance
    * fix typing requirement in Python 3.6+ (#1185)
    * Added support & CI testing for Python 3.7 (#1008)
    + Bug fixes
    * Selection predicates now recognize all valid entries (#1143)
    * Python 2 support for `chart.save()` (#1134)
  - Update to version 2.2.2
    + Bug Fixes
    * fix missing JSON resource in ``altair.vega.v4`` (#1097)
  - Update to version 2.1.0
    + Bug Fixes
    * appropriate handling of InlineData in dataset consolidation (#1092)
    * fix admonition formatting in documentation page (#1094)
  - Update to version 2.2.0
    + Enhancements
    * better handling of datetimes and timezones (#1053)
    * all inline datasets are now converted to named datasets and stored at the
      top level of the chart. This behavior can be disabled by setting
      ``alt.data_transformers.consolidate_datasets = False`` (#951 & #1046)
    * more streamlined shorthand syntax for window transforms (#957)
    + Maintenance
    * update from Vega-Lite 2.4.3 to Vega-Lite 2.6.0; see vega-lite change-logs [2.5.0](https://github.com/vega/vega-lite/releases/tag/v2.5.0) [2.5.1](https://github.com/vega/vega-lite/releases/tag/v2.5.1) [2.5.2](https://github.com/vega/vega-lite/releases/tag/v2.5.2) [2.6.0](https://github.com/vega/vega-lite/releases/tag/v2.6.0)
    + Backward-incompatible changes
    * ``alt.SortField`` renamed to ``alt.EncodingSortField`` and
      ``alt.WindowSortField`` renamed to ``alt.SortField`` (#3741)
    + Bug Fixes
    * Fixed serialization of logical operands on selections within
      ``transform_filter()``: (#1075)
    * Fixed sphinx issue which embedded chart specs twice (#1088)
    * Avoid Selenium import until it is actually needed (#982)
  - Update to version 2.1.0
    + Enhancements
    * add a ``scale_factor`` argument to ``chart.save()`` to allow the
      size/resolution of saved figures to be adjusted. (#918)
    * add an ``add_selection()`` method to add selections to charts (#832)
    * add ``chart.serve()`` and ``chart.display()`` methods for more flexibility
      in displaying charts (#831)
    * allow multiple fields to be passed to encodings such as ``tooltip``
      and ``detail`` (#830)
    * make ``timeUnit`` specifications more succinct, by parsing them in a manner
      similar to aggregates (#866)
    * make ``to_json()`` and ``to_csv()`` have deterministic filenames, so in json
      mode a single datasets will lead to a single on-disk serialization (#862)
    + Breaking Changes
    * make ``data`` the first argument for all compound chart types to match the
      semantics of ``alt.Chart`` (this includes ``alt.FacetChart``,
      ``alt.LayerChart``, ``alt.RepeatChart``, ``alt.VConcatChart``, and
      ``alt.HConcatChart``) (#895).
    * update vega-lite to version 2.4.3 (#836)
    * Only API change is internal: ``alt.MarkProperties`` is now ``alt.MarkConfig``
    + Maintenance
    * update vega to v3.3 & vega-embed to v3.11 in html output & colab renderer (#838)
  - Remove no longer relevant python-altair-pandas.patch
* Fri May 18 2018 tchvatal@suse.com
  - Remove bogus vega3 dependency
* Thu May 17 2018 tchvatal@suse.com
  - Version update to 2.0.1:
    * Update all the dependencies to reflect reality
    * Many changes described mostly in the github commitlog
* Thu May 17 2018 tchvatal@suse.com
  - Add patch to build with new python-pandas:
    * python-altair-pandas.patch
* Thu May 03 2018 toddrme2178@gmail.com
  - Use %license tag
* Thu Apr 19 2018 toddrme2178@gmail.com
  - Update to version 1.2.1
    * Support for JupyterLab/nteract through MIME based rendering. Enable this by calling enable_mime_rendering() before rendering visualizations (#216).
    * Change default import in all code and docs to import altair as alt
    * Check for missing and misspelled column names upon exporting or rendering, and raise FieldError (#399) if any problems are found. This can be disabled by setting Chart.validated_columns=False.
    * Raise MaxRowsExceeded if the number of rows in the dataset is larger than Chart.max_rows to guard against sending large datasets to the browser.
    * Move the Vega-Lite 1.x api into altair.v1 to make it easier for us to migrate to Vega-Lite 2.x and continue to support 1.x. No import change are needed as altair.v1 is aliased to altair in this releasealtair.v1 (#377).
    * Moved the example notebooks into a separate repository (https://github.com/altair-viz/altair_notebooks) that has Binder support (#391).
    * Add $schema to top-level JSON spec (#370).
    * Minor documentation revisions.
  - Remove upstream-included fix_mockserver_py36.patch
* Tue Aug 22 2017 toddrme2178@gmail.com
  - Initial version
  - Add fix_mockserver_py36.patch
    Should be included in next release

Files

/usr/lib/python3.6/site-packages/altair
/usr/lib/python3.6/site-packages/altair-4.1.0-py3.6.egg-info
/usr/lib/python3.6/site-packages/altair-4.1.0-py3.6.egg-info/PKG-INFO
/usr/lib/python3.6/site-packages/altair-4.1.0-py3.6.egg-info/SOURCES.txt
/usr/lib/python3.6/site-packages/altair-4.1.0-py3.6.egg-info/dependency_links.txt
/usr/lib/python3.6/site-packages/altair-4.1.0-py3.6.egg-info/requires.txt
/usr/lib/python3.6/site-packages/altair-4.1.0-py3.6.egg-info/top_level.txt
/usr/lib/python3.6/site-packages/altair/__init__.py
/usr/lib/python3.6/site-packages/altair/__pycache__
/usr/lib/python3.6/site-packages/altair/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/__pycache__/_magics.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/__pycache__/_magics.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/__pycache__/datasets.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/__pycache__/datasets.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/_magics.py
/usr/lib/python3.6/site-packages/altair/datasets.py
/usr/lib/python3.6/site-packages/altair/examples
/usr/lib/python3.6/site-packages/altair/examples/__init__.py
/usr/lib/python3.6/site-packages/altair/examples/__pycache__
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/airport_connections.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/airport_connections.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/airports.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/airports.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/airports_count.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/airports_count.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/anscombe_plot.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/anscombe_plot.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/area_chart_gradient.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/area_chart_gradient.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/bar_and_line_with_dual_axis.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/bar_and_line_with_dual_axis.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/bar_chart_horizontal.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/bar_chart_horizontal.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/bar_chart_sorted.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/bar_chart_sorted.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/bar_chart_with_highlighted_bar.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/bar_chart_with_highlighted_bar.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/bar_chart_with_highlighted_segment.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/bar_chart_with_highlighted_segment.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/bar_chart_with_labels.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/bar_chart_with_labels.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/bar_chart_with_mean_line.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/bar_chart_with_mean_line.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/bar_chart_with_negatives.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/bar_chart_with_negatives.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/bar_rounded.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/bar_rounded.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/beckers_barley_trellis_plot.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/beckers_barley_trellis_plot.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/beckers_barley_wrapped_facet.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/beckers_barley_wrapped_facet.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/binned_heatmap.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/binned_heatmap.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/binned_scatterplot.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/binned_scatterplot.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/boxplot.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/boxplot.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/bubble_plot.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/bubble_plot.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/candlestick_chart.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/candlestick_chart.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/choropleth.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/choropleth.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/choropleth_repeat.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/choropleth_repeat.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/co2_concentration.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/co2_concentration.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/connected_scatterplot.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/connected_scatterplot.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/cumulative_count_chart.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/cumulative_count_chart.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/cumulative_wiki_donations.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/cumulative_wiki_donations.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/density_facet.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/density_facet.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/density_stack.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/density_stack.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/diverging_stacked_bar_chart.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/diverging_stacked_bar_chart.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/dot_dash_plot.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/dot_dash_plot.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/errorbars_with_ci.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/errorbars_with_ci.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/errorbars_with_std.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/errorbars_with_std.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/falkensee.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/falkensee.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/filled_step_chart.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/filled_step_chart.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/gantt_chart.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/gantt_chart.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/gapminder_bubble_plot.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/gapminder_bubble_plot.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/grouped_bar_chart.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/grouped_bar_chart.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/grouped_bar_chart_horizontal.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/grouped_bar_chart_horizontal.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/grouped_bar_chart_with_error_bars.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/grouped_bar_chart_with_error_bars.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/histogram_responsive.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/histogram_responsive.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/histogram_with_a_global_mean_overlay.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/histogram_with_a_global_mean_overlay.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/horizon_graph.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/horizon_graph.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/horizontal_stacked_bar_chart.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/horizontal_stacked_bar_chart.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/interactive_brush.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/interactive_brush.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/interactive_cross_highlight.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/interactive_cross_highlight.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/interactive_layered_crossfilter.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/interactive_layered_crossfilter.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/interactive_legend.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/interactive_legend.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/interactive_scatter_plot.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/interactive_scatter_plot.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/interval_selection.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/interval_selection.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/iowa_electricity.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/iowa_electricity.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/isotype.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/isotype.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/isotype_emoji.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/isotype_emoji.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/isotype_grid.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/isotype_grid.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/layer_line_color_rule.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/layer_line_color_rule.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/layered_area_chart.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/layered_area_chart.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/layered_bar_chart.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/layered_bar_chart.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/layered_chart_bar_mark.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/layered_chart_bar_mark.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/layered_chart_with_dual_axis.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/layered_chart_with_dual_axis.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/layered_heatmap_text.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/layered_heatmap_text.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/layered_histogram.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/layered_histogram.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/line_chart_with_generator.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/line_chart_with_generator.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/line_chart_with_points.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/line_chart_with_points.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/line_percent.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/line_percent.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/line_with_ci.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/line_with_ci.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/london_tube.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/london_tube.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/multi_series_line.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/multi_series_line.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/multifeature_scatter_plot.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/multifeature_scatter_plot.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/multiline_highlight.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/multiline_highlight.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/multiline_tooltip.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/multiline_tooltip.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/multiple_interactions.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/multiple_interactions.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/multiple_marks.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/multiple_marks.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/natural_disasters.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/natural_disasters.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/normalized_stacked_area_chart.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/normalized_stacked_area_chart.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/normalized_stacked_bar_chart.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/normalized_stacked_bar_chart.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/normed_parallel_coordinates.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/normed_parallel_coordinates.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/one_dot_per_zipcode.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/one_dot_per_zipcode.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/parallel_coordinates.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/parallel_coordinates.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/percentage_of_total.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/percentage_of_total.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/poly_fit_regression.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/poly_fit_regression.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/ranged_dot_plot.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/ranged_dot_plot.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/ridgeline_plot.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/ridgeline_plot.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_href.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_href.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_linked_brush.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_linked_brush.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_linked_table.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_linked_table.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_marginal_hist.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_marginal_hist.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_matrix.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_matrix.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_qq.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_qq.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_tooltips.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_tooltips.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_with_histogram.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_with_histogram.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_with_labels.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_with_labels.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_with_layered_histogram.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_with_layered_histogram.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_with_loess.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_with_loess.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_with_minimap.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_with_minimap.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_with_rolling_mean.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/scatter_with_rolling_mean.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/seattle_weather_interactive.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/seattle_weather_interactive.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/select_detail.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/select_detail.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/select_mark_area.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/select_mark_area.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/selection_histogram.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/selection_histogram.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/selection_layer_bar_month.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/selection_layer_bar_month.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/simple_bar_chart.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/simple_bar_chart.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/simple_heatmap.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/simple_heatmap.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/simple_histogram.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/simple_histogram.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/simple_line_chart.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/simple_line_chart.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/simple_scatter_with_errorbars.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/simple_scatter_with_errorbars.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/simple_stacked_area_chart.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/simple_stacked_area_chart.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/slope_graph.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/slope_graph.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/sorted_error_bars_with_ci.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/sorted_error_bars_with_ci.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/stacked_bar_chart.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/stacked_bar_chart.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/stacked_bar_chart_sorted_segments.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/stacked_bar_chart_sorted_segments.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/stacked_bar_chart_with_text.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/stacked_bar_chart_with_text.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/stem_and_leaf.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/stem_and_leaf.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/step_chart.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/step_chart.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/streamgraph.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/streamgraph.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/strip_plot.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/strip_plot.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/stripplot.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/stripplot.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/table_bubble_plot_github.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/table_bubble_plot_github.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/top_k_items.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/top_k_items.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/top_k_letters.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/top_k_letters.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/top_k_with_others.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/top_k_with_others.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/trail_marker.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/trail_marker.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/trellis_area.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/trellis_area.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/trellis_area_sort_array.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/trellis_area_sort_array.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/trellis_histogram.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/trellis_histogram.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/trellis_scatter_plot.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/trellis_scatter_plot.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/trellis_stacked_bar_chart.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/trellis_stacked_bar_chart.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/us_employment.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/us_employment.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/us_incomebrackets_by_state_facet.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/us_incomebrackets_by_state_facet.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/us_population_over_time.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/us_population_over_time.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/us_population_over_time_facet.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/us_population_over_time_facet.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/us_population_pyramid_over_time.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/us_population_pyramid_over_time.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/us_state_capitals.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/us_state_capitals.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/violin_plot.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/violin_plot.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/weather_heatmap.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/weather_heatmap.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/wheat_wages.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/wheat_wages.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/wilkinson-dot-plot.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/wilkinson-dot-plot.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/window_rank.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/window_rank.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/world_map.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/world_map.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/world_projections.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/__pycache__/world_projections.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/airport_connections.py
/usr/lib/python3.6/site-packages/altair/examples/airports.py
/usr/lib/python3.6/site-packages/altair/examples/airports_count.py
/usr/lib/python3.6/site-packages/altair/examples/anscombe_plot.py
/usr/lib/python3.6/site-packages/altair/examples/area_chart_gradient.py
/usr/lib/python3.6/site-packages/altair/examples/bar_and_line_with_dual_axis.py
/usr/lib/python3.6/site-packages/altair/examples/bar_chart_horizontal.py
/usr/lib/python3.6/site-packages/altair/examples/bar_chart_sorted.py
/usr/lib/python3.6/site-packages/altair/examples/bar_chart_with_highlighted_bar.py
/usr/lib/python3.6/site-packages/altair/examples/bar_chart_with_highlighted_segment.py
/usr/lib/python3.6/site-packages/altair/examples/bar_chart_with_labels.py
/usr/lib/python3.6/site-packages/altair/examples/bar_chart_with_mean_line.py
/usr/lib/python3.6/site-packages/altair/examples/bar_chart_with_negatives.py
/usr/lib/python3.6/site-packages/altair/examples/bar_rounded.py
/usr/lib/python3.6/site-packages/altair/examples/beckers_barley_trellis_plot.py
/usr/lib/python3.6/site-packages/altair/examples/beckers_barley_wrapped_facet.py
/usr/lib/python3.6/site-packages/altair/examples/binned_heatmap.py
/usr/lib/python3.6/site-packages/altair/examples/binned_scatterplot.py
/usr/lib/python3.6/site-packages/altair/examples/boxplot.py
/usr/lib/python3.6/site-packages/altair/examples/bubble_plot.py
/usr/lib/python3.6/site-packages/altair/examples/candlestick_chart.py
/usr/lib/python3.6/site-packages/altair/examples/choropleth.py
/usr/lib/python3.6/site-packages/altair/examples/choropleth_repeat.py
/usr/lib/python3.6/site-packages/altair/examples/co2_concentration.py
/usr/lib/python3.6/site-packages/altair/examples/connected_scatterplot.py
/usr/lib/python3.6/site-packages/altair/examples/cumulative_count_chart.py
/usr/lib/python3.6/site-packages/altair/examples/cumulative_wiki_donations.py
/usr/lib/python3.6/site-packages/altair/examples/density_facet.py
/usr/lib/python3.6/site-packages/altair/examples/density_stack.py
/usr/lib/python3.6/site-packages/altair/examples/diverging_stacked_bar_chart.py
/usr/lib/python3.6/site-packages/altair/examples/dot_dash_plot.py
/usr/lib/python3.6/site-packages/altair/examples/errorbars_with_ci.py
/usr/lib/python3.6/site-packages/altair/examples/errorbars_with_std.py
/usr/lib/python3.6/site-packages/altair/examples/falkensee.py
/usr/lib/python3.6/site-packages/altair/examples/filled_step_chart.py
/usr/lib/python3.6/site-packages/altair/examples/gantt_chart.py
/usr/lib/python3.6/site-packages/altair/examples/gapminder_bubble_plot.py
/usr/lib/python3.6/site-packages/altair/examples/grouped_bar_chart.py
/usr/lib/python3.6/site-packages/altair/examples/grouped_bar_chart_horizontal.py
/usr/lib/python3.6/site-packages/altair/examples/grouped_bar_chart_with_error_bars.py
/usr/lib/python3.6/site-packages/altair/examples/histogram_responsive.py
/usr/lib/python3.6/site-packages/altair/examples/histogram_with_a_global_mean_overlay.py
/usr/lib/python3.6/site-packages/altair/examples/horizon_graph.py
/usr/lib/python3.6/site-packages/altair/examples/horizontal_stacked_bar_chart.py
/usr/lib/python3.6/site-packages/altair/examples/interactive_brush.py
/usr/lib/python3.6/site-packages/altair/examples/interactive_cross_highlight.py
/usr/lib/python3.6/site-packages/altair/examples/interactive_layered_crossfilter.py
/usr/lib/python3.6/site-packages/altair/examples/interactive_legend.py
/usr/lib/python3.6/site-packages/altair/examples/interactive_scatter_plot.py
/usr/lib/python3.6/site-packages/altair/examples/interval_selection.py
/usr/lib/python3.6/site-packages/altair/examples/iowa_electricity.py
/usr/lib/python3.6/site-packages/altair/examples/isotype.py
/usr/lib/python3.6/site-packages/altair/examples/isotype_emoji.py
/usr/lib/python3.6/site-packages/altair/examples/isotype_grid.py
/usr/lib/python3.6/site-packages/altair/examples/layer_line_color_rule.py
/usr/lib/python3.6/site-packages/altair/examples/layered_area_chart.py
/usr/lib/python3.6/site-packages/altair/examples/layered_bar_chart.py
/usr/lib/python3.6/site-packages/altair/examples/layered_chart_bar_mark.py
/usr/lib/python3.6/site-packages/altair/examples/layered_chart_with_dual_axis.py
/usr/lib/python3.6/site-packages/altair/examples/layered_heatmap_text.py
/usr/lib/python3.6/site-packages/altair/examples/layered_histogram.py
/usr/lib/python3.6/site-packages/altair/examples/line_chart_with_generator.py
/usr/lib/python3.6/site-packages/altair/examples/line_chart_with_points.py
/usr/lib/python3.6/site-packages/altair/examples/line_percent.py
/usr/lib/python3.6/site-packages/altair/examples/line_with_ci.py
/usr/lib/python3.6/site-packages/altair/examples/london_tube.py
/usr/lib/python3.6/site-packages/altair/examples/multi_series_line.py
/usr/lib/python3.6/site-packages/altair/examples/multifeature_scatter_plot.py
/usr/lib/python3.6/site-packages/altair/examples/multiline_highlight.py
/usr/lib/python3.6/site-packages/altair/examples/multiline_tooltip.py
/usr/lib/python3.6/site-packages/altair/examples/multiple_interactions.py
/usr/lib/python3.6/site-packages/altair/examples/multiple_marks.py
/usr/lib/python3.6/site-packages/altair/examples/natural_disasters.py
/usr/lib/python3.6/site-packages/altair/examples/normalized_stacked_area_chart.py
/usr/lib/python3.6/site-packages/altair/examples/normalized_stacked_bar_chart.py
/usr/lib/python3.6/site-packages/altair/examples/normed_parallel_coordinates.py
/usr/lib/python3.6/site-packages/altair/examples/one_dot_per_zipcode.py
/usr/lib/python3.6/site-packages/altair/examples/parallel_coordinates.py
/usr/lib/python3.6/site-packages/altair/examples/percentage_of_total.py
/usr/lib/python3.6/site-packages/altair/examples/poly_fit_regression.py
/usr/lib/python3.6/site-packages/altair/examples/ranged_dot_plot.py
/usr/lib/python3.6/site-packages/altair/examples/ridgeline_plot.py
/usr/lib/python3.6/site-packages/altair/examples/scatter_href.py
/usr/lib/python3.6/site-packages/altair/examples/scatter_linked_brush.py
/usr/lib/python3.6/site-packages/altair/examples/scatter_linked_table.py
/usr/lib/python3.6/site-packages/altair/examples/scatter_marginal_hist.py
/usr/lib/python3.6/site-packages/altair/examples/scatter_matrix.py
/usr/lib/python3.6/site-packages/altair/examples/scatter_qq.py
/usr/lib/python3.6/site-packages/altair/examples/scatter_tooltips.py
/usr/lib/python3.6/site-packages/altair/examples/scatter_with_histogram.py
/usr/lib/python3.6/site-packages/altair/examples/scatter_with_labels.py
/usr/lib/python3.6/site-packages/altair/examples/scatter_with_layered_histogram.py
/usr/lib/python3.6/site-packages/altair/examples/scatter_with_loess.py
/usr/lib/python3.6/site-packages/altair/examples/scatter_with_minimap.py
/usr/lib/python3.6/site-packages/altair/examples/scatter_with_rolling_mean.py
/usr/lib/python3.6/site-packages/altair/examples/seattle_weather_interactive.py
/usr/lib/python3.6/site-packages/altair/examples/select_detail.py
/usr/lib/python3.6/site-packages/altair/examples/select_mark_area.py
/usr/lib/python3.6/site-packages/altair/examples/selection_histogram.py
/usr/lib/python3.6/site-packages/altair/examples/selection_layer_bar_month.py
/usr/lib/python3.6/site-packages/altair/examples/simple_bar_chart.py
/usr/lib/python3.6/site-packages/altair/examples/simple_heatmap.py
/usr/lib/python3.6/site-packages/altair/examples/simple_histogram.py
/usr/lib/python3.6/site-packages/altair/examples/simple_line_chart.py
/usr/lib/python3.6/site-packages/altair/examples/simple_scatter_with_errorbars.py
/usr/lib/python3.6/site-packages/altair/examples/simple_stacked_area_chart.py
/usr/lib/python3.6/site-packages/altair/examples/slope_graph.py
/usr/lib/python3.6/site-packages/altair/examples/sorted_error_bars_with_ci.py
/usr/lib/python3.6/site-packages/altair/examples/stacked_bar_chart.py
/usr/lib/python3.6/site-packages/altair/examples/stacked_bar_chart_sorted_segments.py
/usr/lib/python3.6/site-packages/altair/examples/stacked_bar_chart_with_text.py
/usr/lib/python3.6/site-packages/altair/examples/stem_and_leaf.py
/usr/lib/python3.6/site-packages/altair/examples/step_chart.py
/usr/lib/python3.6/site-packages/altair/examples/streamgraph.py
/usr/lib/python3.6/site-packages/altair/examples/strip_plot.py
/usr/lib/python3.6/site-packages/altair/examples/stripplot.py
/usr/lib/python3.6/site-packages/altair/examples/table_bubble_plot_github.py
/usr/lib/python3.6/site-packages/altair/examples/tests
/usr/lib/python3.6/site-packages/altair/examples/tests/__init__.py
/usr/lib/python3.6/site-packages/altair/examples/tests/__pycache__
/usr/lib/python3.6/site-packages/altair/examples/tests/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/tests/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/tests/__pycache__/test_examples.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/examples/tests/__pycache__/test_examples.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/examples/tests/test_examples.py
/usr/lib/python3.6/site-packages/altair/examples/top_k_items.py
/usr/lib/python3.6/site-packages/altair/examples/top_k_letters.py
/usr/lib/python3.6/site-packages/altair/examples/top_k_with_others.py
/usr/lib/python3.6/site-packages/altair/examples/trail_marker.py
/usr/lib/python3.6/site-packages/altair/examples/trellis_area.py
/usr/lib/python3.6/site-packages/altair/examples/trellis_area_sort_array.py
/usr/lib/python3.6/site-packages/altair/examples/trellis_histogram.py
/usr/lib/python3.6/site-packages/altair/examples/trellis_scatter_plot.py
/usr/lib/python3.6/site-packages/altair/examples/trellis_stacked_bar_chart.py
/usr/lib/python3.6/site-packages/altair/examples/us_employment.py
/usr/lib/python3.6/site-packages/altair/examples/us_incomebrackets_by_state_facet.py
/usr/lib/python3.6/site-packages/altair/examples/us_population_over_time.py
/usr/lib/python3.6/site-packages/altair/examples/us_population_over_time_facet.py
/usr/lib/python3.6/site-packages/altair/examples/us_population_pyramid_over_time.py
/usr/lib/python3.6/site-packages/altair/examples/us_state_capitals.py
/usr/lib/python3.6/site-packages/altair/examples/violin_plot.py
/usr/lib/python3.6/site-packages/altair/examples/weather_heatmap.py
/usr/lib/python3.6/site-packages/altair/examples/wheat_wages.py
/usr/lib/python3.6/site-packages/altair/examples/wilkinson-dot-plot.py
/usr/lib/python3.6/site-packages/altair/examples/window_rank.py
/usr/lib/python3.6/site-packages/altair/examples/world_map.py
/usr/lib/python3.6/site-packages/altair/examples/world_projections.py
/usr/lib/python3.6/site-packages/altair/expr
/usr/lib/python3.6/site-packages/altair/expr/__init__.py
/usr/lib/python3.6/site-packages/altair/expr/__pycache__
/usr/lib/python3.6/site-packages/altair/expr/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/expr/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/expr/__pycache__/consts.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/expr/__pycache__/consts.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/expr/__pycache__/core.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/expr/__pycache__/core.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/expr/__pycache__/funcs.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/expr/__pycache__/funcs.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/expr/consts.py
/usr/lib/python3.6/site-packages/altair/expr/core.py
/usr/lib/python3.6/site-packages/altair/expr/funcs.py
/usr/lib/python3.6/site-packages/altair/expr/tests
/usr/lib/python3.6/site-packages/altair/expr/tests/__init__.py
/usr/lib/python3.6/site-packages/altair/expr/tests/__pycache__
/usr/lib/python3.6/site-packages/altair/expr/tests/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/expr/tests/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/expr/tests/__pycache__/test_expr.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/expr/tests/__pycache__/test_expr.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/expr/tests/test_expr.py
/usr/lib/python3.6/site-packages/altair/sphinxext
/usr/lib/python3.6/site-packages/altair/sphinxext/__init__.py
/usr/lib/python3.6/site-packages/altair/sphinxext/__pycache__
/usr/lib/python3.6/site-packages/altair/sphinxext/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/sphinxext/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/sphinxext/__pycache__/altairgallery.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/sphinxext/__pycache__/altairgallery.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/sphinxext/__pycache__/altairplot.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/sphinxext/__pycache__/altairplot.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/sphinxext/__pycache__/schematable.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/sphinxext/__pycache__/schematable.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/sphinxext/__pycache__/utils.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/sphinxext/__pycache__/utils.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/sphinxext/altairgallery.py
/usr/lib/python3.6/site-packages/altair/sphinxext/altairplot.py
/usr/lib/python3.6/site-packages/altair/sphinxext/schematable.py
/usr/lib/python3.6/site-packages/altair/sphinxext/utils.py
/usr/lib/python3.6/site-packages/altair/tests
/usr/lib/python3.6/site-packages/altair/tests/__init__.py
/usr/lib/python3.6/site-packages/altair/tests/__pycache__
/usr/lib/python3.6/site-packages/altair/tests/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/tests/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/tests/__pycache__/test_magics.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/tests/__pycache__/test_magics.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/tests/test_magics.py
/usr/lib/python3.6/site-packages/altair/utils
/usr/lib/python3.6/site-packages/altair/utils/__init__.py
/usr/lib/python3.6/site-packages/altair/utils/__pycache__
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/core.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/core.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/data.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/data.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/deprecation.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/deprecation.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/display.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/display.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/execeval.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/execeval.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/html.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/html.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/mimebundle.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/mimebundle.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/plugin_registry.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/plugin_registry.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/save.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/save.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/schemapi.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/schemapi.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/server.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/server.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/theme.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/__pycache__/theme.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/core.py
/usr/lib/python3.6/site-packages/altair/utils/data.py
/usr/lib/python3.6/site-packages/altair/utils/deprecation.py
/usr/lib/python3.6/site-packages/altair/utils/display.py
/usr/lib/python3.6/site-packages/altair/utils/execeval.py
/usr/lib/python3.6/site-packages/altair/utils/html.py
/usr/lib/python3.6/site-packages/altair/utils/mimebundle.py
/usr/lib/python3.6/site-packages/altair/utils/plugin_registry.py
/usr/lib/python3.6/site-packages/altair/utils/save.py
/usr/lib/python3.6/site-packages/altair/utils/schemapi.py
/usr/lib/python3.6/site-packages/altair/utils/server.py
/usr/lib/python3.6/site-packages/altair/utils/tests
/usr/lib/python3.6/site-packages/altair/utils/tests/__init__.py
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__/test_core.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__/test_core.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__/test_data.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__/test_data.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__/test_deprecation.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__/test_deprecation.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__/test_execeval.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__/test_execeval.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__/test_html.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__/test_html.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__/test_mimebundle.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__/test_mimebundle.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__/test_plugin_registry.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__/test_plugin_registry.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__/test_schemapi.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__/test_schemapi.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__/test_server.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__/test_server.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__/test_utils.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/utils/tests/__pycache__/test_utils.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/utils/tests/test_core.py
/usr/lib/python3.6/site-packages/altair/utils/tests/test_data.py
/usr/lib/python3.6/site-packages/altair/utils/tests/test_deprecation.py
/usr/lib/python3.6/site-packages/altair/utils/tests/test_execeval.py
/usr/lib/python3.6/site-packages/altair/utils/tests/test_html.py
/usr/lib/python3.6/site-packages/altair/utils/tests/test_mimebundle.py
/usr/lib/python3.6/site-packages/altair/utils/tests/test_plugin_registry.py
/usr/lib/python3.6/site-packages/altair/utils/tests/test_schemapi.py
/usr/lib/python3.6/site-packages/altair/utils/tests/test_server.py
/usr/lib/python3.6/site-packages/altair/utils/tests/test_utils.py
/usr/lib/python3.6/site-packages/altair/utils/theme.py
/usr/lib/python3.6/site-packages/altair/vega
/usr/lib/python3.6/site-packages/altair/vega/__init__.py
/usr/lib/python3.6/site-packages/altair/vega/__pycache__
/usr/lib/python3.6/site-packages/altair/vega/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vega/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vega/__pycache__/data.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vega/__pycache__/data.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vega/__pycache__/display.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vega/__pycache__/display.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vega/data.py
/usr/lib/python3.6/site-packages/altair/vega/display.py
/usr/lib/python3.6/site-packages/altair/vega/tests
/usr/lib/python3.6/site-packages/altair/vega/tests/__init__.py
/usr/lib/python3.6/site-packages/altair/vega/tests/__pycache__
/usr/lib/python3.6/site-packages/altair/vega/tests/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vega/tests/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vega/tests/__pycache__/test_import.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vega/tests/__pycache__/test_import.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vega/tests/test_import.py
/usr/lib/python3.6/site-packages/altair/vega/v5
/usr/lib/python3.6/site-packages/altair/vega/v5/__init__.py
/usr/lib/python3.6/site-packages/altair/vega/v5/__pycache__
/usr/lib/python3.6/site-packages/altair/vega/v5/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vega/v5/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vega/v5/__pycache__/data.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vega/v5/__pycache__/data.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vega/v5/__pycache__/display.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vega/v5/__pycache__/display.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vega/v5/data.py
/usr/lib/python3.6/site-packages/altair/vega/v5/display.py
/usr/lib/python3.6/site-packages/altair/vega/v5/schema
/usr/lib/python3.6/site-packages/altair/vega/v5/schema/__init__.py
/usr/lib/python3.6/site-packages/altair/vega/v5/schema/__pycache__
/usr/lib/python3.6/site-packages/altair/vega/v5/schema/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vega/v5/schema/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vega/v5/schema/__pycache__/core.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vega/v5/schema/__pycache__/core.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vega/v5/schema/core.py
/usr/lib/python3.6/site-packages/altair/vega/v5/schema/vega-schema.json
/usr/lib/python3.6/site-packages/altair/vegalite
/usr/lib/python3.6/site-packages/altair/vegalite/__init__.py
/usr/lib/python3.6/site-packages/altair/vegalite/__pycache__
/usr/lib/python3.6/site-packages/altair/vegalite/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/__pycache__/api.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/__pycache__/api.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/__pycache__/data.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/__pycache__/data.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/__pycache__/display.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/__pycache__/display.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/__pycache__/schema.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/__pycache__/schema.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/api.py
/usr/lib/python3.6/site-packages/altair/vegalite/data.py
/usr/lib/python3.6/site-packages/altair/vegalite/display.py
/usr/lib/python3.6/site-packages/altair/vegalite/schema.py
/usr/lib/python3.6/site-packages/altair/vegalite/tests
/usr/lib/python3.6/site-packages/altair/vegalite/tests/__init__.py
/usr/lib/python3.6/site-packages/altair/vegalite/tests/__pycache__
/usr/lib/python3.6/site-packages/altair/vegalite/tests/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/tests/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/tests/__pycache__/test_common.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/tests/__pycache__/test_common.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/tests/test_common.py
/usr/lib/python3.6/site-packages/altair/vegalite/v3
/usr/lib/python3.6/site-packages/altair/vegalite/v3/__init__.py
/usr/lib/python3.6/site-packages/altair/vegalite/v3/__pycache__
/usr/lib/python3.6/site-packages/altair/vegalite/v3/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/__pycache__/_deprecated.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/__pycache__/_deprecated.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/__pycache__/api.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/__pycache__/api.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/__pycache__/data.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/__pycache__/data.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/__pycache__/display.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/__pycache__/display.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/__pycache__/theme.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/__pycache__/theme.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/_deprecated.py
/usr/lib/python3.6/site-packages/altair/vegalite/v3/api.py
/usr/lib/python3.6/site-packages/altair/vegalite/v3/data.py
/usr/lib/python3.6/site-packages/altair/vegalite/v3/display.py
/usr/lib/python3.6/site-packages/altair/vegalite/v3/schema
/usr/lib/python3.6/site-packages/altair/vegalite/v3/schema/__init__.py
/usr/lib/python3.6/site-packages/altair/vegalite/v3/schema/__pycache__
/usr/lib/python3.6/site-packages/altair/vegalite/v3/schema/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/schema/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/schema/__pycache__/channels.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/schema/__pycache__/channels.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/schema/__pycache__/core.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/schema/__pycache__/core.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/schema/__pycache__/mixins.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/schema/__pycache__/mixins.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/schema/channels.py
/usr/lib/python3.6/site-packages/altair/vegalite/v3/schema/core.py
/usr/lib/python3.6/site-packages/altair/vegalite/v3/schema/mixins.py
/usr/lib/python3.6/site-packages/altair/vegalite/v3/schema/vega-lite-schema.json
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests/__init__.py
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests/__pycache__
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests/__pycache__/test_api.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests/__pycache__/test_api.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests/__pycache__/test_data.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests/__pycache__/test_data.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests/__pycache__/test_display.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests/__pycache__/test_display.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests/__pycache__/test_geo_interface.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests/__pycache__/test_geo_interface.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests/__pycache__/test_renderers.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests/__pycache__/test_renderers.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests/__pycache__/test_theme.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests/__pycache__/test_theme.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests/test_api.py
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests/test_data.py
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests/test_display.py
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests/test_geo_interface.py
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests/test_renderers.py
/usr/lib/python3.6/site-packages/altair/vegalite/v3/tests/test_theme.py
/usr/lib/python3.6/site-packages/altair/vegalite/v3/theme.py
/usr/lib/python3.6/site-packages/altair/vegalite/v4
/usr/lib/python3.6/site-packages/altair/vegalite/v4/__init__.py
/usr/lib/python3.6/site-packages/altair/vegalite/v4/__pycache__
/usr/lib/python3.6/site-packages/altair/vegalite/v4/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/__pycache__/api.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/__pycache__/api.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/__pycache__/data.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/__pycache__/data.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/__pycache__/display.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/__pycache__/display.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/__pycache__/theme.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/__pycache__/theme.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/api.py
/usr/lib/python3.6/site-packages/altair/vegalite/v4/data.py
/usr/lib/python3.6/site-packages/altair/vegalite/v4/display.py
/usr/lib/python3.6/site-packages/altair/vegalite/v4/schema
/usr/lib/python3.6/site-packages/altair/vegalite/v4/schema/__init__.py
/usr/lib/python3.6/site-packages/altair/vegalite/v4/schema/__pycache__
/usr/lib/python3.6/site-packages/altair/vegalite/v4/schema/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/schema/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/schema/__pycache__/channels.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/schema/__pycache__/channels.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/schema/__pycache__/core.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/schema/__pycache__/core.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/schema/__pycache__/mixins.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/schema/__pycache__/mixins.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/schema/channels.py
/usr/lib/python3.6/site-packages/altair/vegalite/v4/schema/core.py
/usr/lib/python3.6/site-packages/altair/vegalite/v4/schema/mixins.py
/usr/lib/python3.6/site-packages/altair/vegalite/v4/schema/vega-lite-schema.json
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests/__init__.py
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests/__pycache__
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests/__pycache__/test_api.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests/__pycache__/test_api.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests/__pycache__/test_data.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests/__pycache__/test_data.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests/__pycache__/test_display.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests/__pycache__/test_display.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests/__pycache__/test_geo_interface.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests/__pycache__/test_geo_interface.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests/__pycache__/test_renderers.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests/__pycache__/test_renderers.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests/__pycache__/test_theme.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests/__pycache__/test_theme.cpython-36.pyc
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests/test_api.py
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests/test_data.py
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests/test_display.py
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests/test_geo_interface.py
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests/test_renderers.py
/usr/lib/python3.6/site-packages/altair/vegalite/v4/tests/test_theme.py
/usr/lib/python3.6/site-packages/altair/vegalite/v4/theme.py
/usr/share/doc/packages/python3-altair
/usr/share/doc/packages/python3-altair/README.md
/usr/share/licenses/python3-altair
/usr/share/licenses/python3-altair/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 19:57:54 2024