perspective-python 3.0.0rc1__tar.gz → 3.0.0rc2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/Cargo.lock +7 -7
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/PKG-INFO +1 -2
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/__init__.py +3 -2
- {perspective_python-3.0.0rc1/rust/perspective-python → perspective_python-3.0.0rc2}/perspective/handlers/__init__.py +3 -3
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/conftest.py +24 -20
- {perspective_python-3.0.0rc1/rust/perspective-python → perspective_python-3.0.0rc2}/perspective/tests/core/test_async.py +1 -24
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/server/test_server.py +1 -5
- {perspective_python-3.0.0rc1/rust/perspective-python → perspective_python-3.0.0rc2}/perspective/tests/table/test_table.py +6 -4
- {perspective_python-3.0.0rc1/rust/perspective-python → perspective_python-3.0.0rc2}/perspective/tests/table/test_table_datetime.py +1 -1
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_table_infer.py +1 -1
- {perspective_python-3.0.0rc1/rust/perspective-python → perspective_python-3.0.0rc2}/perspective/tests/table/test_table_limit.py +0 -2
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_to_arrow.py +4 -1
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_to_arrow_lz4.py +0 -1
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_view.py +0 -1
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_view_expression.py +4 -4
- {perspective_python-3.0.0rc1/rust/perspective-python → perspective_python-3.0.0rc2}/perspective/tests/viewer/test_validate.py +0 -1
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/widget/widget.py +4 -4
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/pyproject.toml +2 -3
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/Cargo.toml +1 -1
- perspective_python-3.0.0rc2/rust/perspective-client/docs/client/system_info.md +1 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/client/table.md +2 -2
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/client.md +2 -2
- perspective_python-3.0.0rc2/rust/perspective-client/docs/table/get_client.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/table/get_features.md +2 -0
- perspective_python-3.0.0rc2/rust/perspective-client/docs/view/get_config.md +1 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/view.rs +3 -3
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/Cargo.toml +3 -4
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/tornado/server/new_api.py +0 -2
- perspective_python-3.0.0rc2/rust/perspective-python/docs/client/system_info.md +1 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/client/table.md +2 -2
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/client.md +2 -2
- perspective_python-3.0.0rc2/rust/perspective-python/docs/table/get_client.md +1 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/table/get_features.md +2 -0
- perspective_python-3.0.0rc2/rust/perspective-python/docs/view/get_config.md +1 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/__init__.py +3 -2
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2/rust/perspective-python}/perspective/handlers/__init__.py +3 -3
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/conftest.py +24 -20
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2/rust/perspective-python}/perspective/tests/core/test_async.py +1 -24
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/server/test_server.py +1 -5
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2/rust/perspective-python}/perspective/tests/table/test_table.py +6 -4
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2/rust/perspective-python}/perspective/tests/table/test_table_datetime.py +1 -1
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_table_infer.py +1 -1
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2/rust/perspective-python}/perspective/tests/table/test_table_limit.py +0 -2
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_to_arrow.py +4 -1
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_to_arrow_lz4.py +0 -1
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_view.py +0 -1
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_view_expression.py +4 -4
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2/rust/perspective-python}/perspective/tests/viewer/test_validate.py +0 -1
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/widget/widget.py +4 -4
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/Cargo.toml +2 -2
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/build.rs +4 -1
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/package.json +1 -1
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/sparse_tree.cpp +39 -30
- {perspective.data → perspective_python-3.0.0rc2.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/package.json +5 -6
- perspective_python-3.0.0rc2.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.62664683b16e6812e453.js +18 -0
- perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/remoteEntry.2d936c1eb55465604308.js → perspective_python-3.0.0rc2.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/remoteEntry.18d5d740c252bde12d73.js +1 -1
- perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.d2836dfacdf59284d040.js +0 -18
- perspective_python-3.0.0rc1/perspective/tests/table/test_update_numpy.py +0 -252
- perspective_python-3.0.0rc1/rust/perspective-client/docs/client/system_info.md +0 -1
- perspective_python-3.0.0rc1/rust/perspective-client/docs/table/get_client.md +0 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/table/get_features.md +0 -0
- perspective_python-3.0.0rc1/rust/perspective-client/docs/view/get_config.md +0 -1
- perspective_python-3.0.0rc1/rust/perspective-python/docs/client/system_info.md +0 -1
- perspective_python-3.0.0rc1/rust/perspective-python/docs/table/get_client.md +0 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/table/get_features.md +0 -0
- perspective_python-3.0.0rc1/rust/perspective-python/docs/view/get_config.md +0 -1
- perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_update_numpy.py +0 -252
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/Cargo.toml +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/extension/finos-perspective-nbextension.json +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/handlers/aiohttp.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/handlers/starlette.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/handlers/tornado.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/templates/exported_widget.html.jinja +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/__init__.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/core/__init__.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/core/test_threadpool.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/server/__init__.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/server/test_session.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/single_threaded/test_single_threaded.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/__init__.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/arrow/date32.arrow +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/arrow/date64.arrow +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/arrow/dict.arrow +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/arrow/dict_update.arrow +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/arrow/int_float_str.arrow +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/arrow/int_float_str_file.arrow +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/arrow/int_float_str_update.arrow +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/object_sequence.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_delete.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_exception.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_leaks.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_ports.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_remove.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_table_arrow.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_table_numpy.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_table_pandas.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_to_format.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_update.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_update_arrow.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_update_pandas.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/viewer/__init__.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/viewer/test_viewer.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/widget/__init__.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/widget/test_widget.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/widget/test_widget_pandas.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/viewer/__init__.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/viewer/validate.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/viewer/viewer.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/viewer/viewer_traitlets.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/widget/__init__.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/build.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/client/get_hosted_table_names.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/client/open_table.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/client/set_loop_callback.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/client/terminate.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/clear.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/columns.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/delete.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/get_index.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/get_limit.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/get_num_views.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/make_port.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/on_delete.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/remove.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/remove_delete.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/replace.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/schema.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/size.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/update.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/validate_expressions.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/view.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/collapse.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/column_paths.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/delete.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/dimensions.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/expand.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/expression_schema.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/get_min_max.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/num_columns.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/num_rows.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/on_delete.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/on_update.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/remove_delete.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/remove_update.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/schema.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/set_depth.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/to_arrow.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/to_columns.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/to_columns_string.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/to_csv.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/to_json.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/to_json_string.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/client.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/config/aggregates.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/config/column_type.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/config/expressions.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/config/filters.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/config/mod.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/config/plugin.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/config/sort.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/config/view_config.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/lib.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/proto.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/session.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/table.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/table_data.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/utils/clone.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/utils/logging.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/utils/mod.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/utils/tests/clone.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/utils/tests/mod.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/__init__.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/runtime/__init__.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/runtime/bench.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/runtime/perspective_benchmark.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/runtime/run_perspective_benchmark.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/tornado/__init__.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/tornado/async_server.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/tornado/bench.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/tornado/distributed_mode.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/tornado/server/old_api.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/tornado/server_mode.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/client/get_hosted_table_names.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/client/open_table.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/client/set_loop_callback.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/client/terminate.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/clear.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/columns.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/delete.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/get_index.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/get_limit.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/get_num_views.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/make_port.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/on_delete.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/remove.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/remove_delete.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/replace.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/schema.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/size.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/update.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/validate_expressions.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/view.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/collapse.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/column_paths.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/delete.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/dimensions.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/expand.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/expression_schema.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/get_min_max.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/num_columns.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/num_rows.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/on_delete.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/on_update.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/remove_delete.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/remove_update.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/schema.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/set_depth.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/to_arrow.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/to_columns.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/to_columns_string.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/to_csv.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/to_json.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/to_json_string.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view.md +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/handlers/aiohttp.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/handlers/starlette.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/handlers/tornado.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/__init__.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/core/__init__.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/core/test_threadpool.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/server/__init__.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/server/test_session.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/single_threaded/test_single_threaded.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/__init__.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/object_sequence.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_delete.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_exception.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_leaks.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_ports.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_remove.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_table_arrow.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_table_numpy.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_table_pandas.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_to_format.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_update.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_update_arrow.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_update_pandas.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/viewer/__init__.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/viewer/test_viewer.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/widget/__init__.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/widget/test_widget.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/widget/test_widget_pandas.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/viewer/__init__.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/viewer/validate.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/viewer/viewer.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/viewer/viewer_traitlets.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/widget/__init__.py +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/src/client/client_sync.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/src/client/mod.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/src/client/python.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/src/lib.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/src/server/mod.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/src/server/server_sync.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/Pybind.txt.in +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/arrow/CMakeLists.txt +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/arrow/config.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/arrow.txt.in +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/date.txt.in +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/double-conversion.txt.in +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/exprtk.txt.in +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/flatbuffers.txt.in +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/hopscotch.txt.in +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/lz4.txt.in +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/modules/.clangd.in +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/modules/FindColor.cmake +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/modules/FindExprTk.cmake +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/modules/FindFlatbuffers.cmake +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/modules/FindInstallDependency.cmake +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/modules/FindProtoc.cmake +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/modules/FindRe2.cmake +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/modules/LLVMToolchain.cmake +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/modules/SetupClangd.cmake +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/ordered-map.txt.in +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/protobuf.txt.in +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/rapidjson.txt.in +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/re2/CMakeLists.txt +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/re2.txt.in +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/.clangd.in +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/CMakeLists.txt +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/build.js +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/env.js +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/aggregate.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/aggspec.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/arg_sort.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/arrow_csv.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/arrow_loader.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/arrow_writer.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/base.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/base_impl_linux.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/base_impl_osx.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/base_impl_wasm.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/base_impl_win.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/binding.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/column.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/comparators.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/compat.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/compat_impl_linux.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/compat_impl_osx.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/compat_impl_wasm.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/compat_impl_win.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/computed_expression.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/computed_function.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/config.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/context_base.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/context_grouped_pkey.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/context_handle.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/context_iterators.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/context_one.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/context_two.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/context_unit.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/context_zero.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/data.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/data_slice.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/data_table.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/date.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/date_parser.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/dense_nodes.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/dense_tree.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/dense_tree_context.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/dependency.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/emscripten_api.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/expression_tables.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/expression_vocab.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/extract_aggregate.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/filter.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/flat_traversal.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/get_data_extents.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/gnode.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/gnode_state.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/init.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/kernel_engine.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/main.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/mask.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/multi_sort.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/none.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/path.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/pivot.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/pool.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/port.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/process_state.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/proto_api.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/pyutils.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/raii.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/raii_impl_linux.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/raii_impl_osx.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/raii_impl_win.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/range.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/regex.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/rlookup.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/scalar.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/schema.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/schema_column.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/server.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/simple_bitmask.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/slice.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/sort_specification.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/sparse_tree_node.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/step_delta.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/storage.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/storage_impl_linux.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/storage_impl_osx.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/storage_impl_win.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/sym_table.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/table.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/time.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/tracing.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/tracing_impl_linux.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/tracing_impl_osx.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/traversal.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/traversal_nodes.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/tree_context_common.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/update_task.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/utils.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/vendor/arrow_compute_registry.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/vendor/arrow_single_threaded_reader.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/vendor/single_threaded_reader.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/view.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/view_config.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/vocab.cpp +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/aggregate.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/aggspec.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/arg_sort.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/arrow_csv.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/arrow_loader.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/arrow_writer.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/base.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/binding.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/column.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/comparators.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/compat.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/computed_expression.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/computed_function.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/config.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/context_base.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/context_common_decls.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/context_grouped_pkey.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/context_handle.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/context_one.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/context_two.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/context_unit.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/context_zero.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/data.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/data_accessor.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/data_slice.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/data_table.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/date.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/date_parser.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/debug_helpers.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/defaults.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/dense_nodes.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/dense_tree.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/dense_tree_context.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/dependency.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/emscripten_api_utils.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/env_vars.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/exception.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/exports.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/expression_tables.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/expression_vocab.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/exprtk.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/extract_aggregate.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/filter.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/filter_utils.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/first.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/flat_traversal.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/flatten.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/fragments.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/get_data_extents.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/gnode.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/gnode_state.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/index.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/init.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/iterator.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/kernel_engine.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/last.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/mask.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/multi_sort.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/node_processor.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/node_processor_types.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/none.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/parallel_for.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/partition.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/path.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/pivot.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/pool.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/port.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/portable.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/process_state.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/proto_api.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/pyutils.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/raii.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/range.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/raw_types.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/regex.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/rlookup.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/scalar.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/schema.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/schema_column.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/server.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/simple_bitmask.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/slice.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/sort_specification.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/sparse_tree.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/sparse_tree_node.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/step_delta.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/storage.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/sym_table.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/table.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/time.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/tracing.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/tracing_impl_linux.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/tracing_impl_osx.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/tracing_impl_win.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/traversal.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/traversal_nodes.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/tree_context_common.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/tree_iterator.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/update_task.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/utils.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/val.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/vendor/arrow_compute_registry.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/vendor/arrow_single_threaded_reader.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/view.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/view_config.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/vocab.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/protos/CMakeLists.txt +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/protos/perspective.proto +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/include/server.h +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/src/ffi.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/src/lib.rs +0 -0
- {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/src/server.cpp +0 -0
- {perspective.data → perspective_python-3.0.0rc2.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/install.json +0 -0
- /perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.d2836dfacdf59284d040.js.LICENSE.txt → /perspective_python-3.0.0rc2.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.62664683b16e6812e453.js.LICENSE.txt +0 -0
- {perspective.data → perspective_python-3.0.0rc2.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/905.d3bbc3d5954582d507bb.js +0 -0
- {perspective.data → perspective_python-3.0.0rc2.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/style.js +0 -0
- {perspective.data → perspective_python-3.0.0rc2.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/third-party-licenses.json +0 -0
|
@@ -1783,7 +1783,7 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
|
|
1783
1783
|
|
|
1784
1784
|
[[package]]
|
|
1785
1785
|
name = "perspective"
|
|
1786
|
-
version = "3.0.0-rc.
|
|
1786
|
+
version = "3.0.0-rc.2"
|
|
1787
1787
|
dependencies = [
|
|
1788
1788
|
"async-lock",
|
|
1789
1789
|
"perspective-client",
|
|
@@ -1821,7 +1821,7 @@ dependencies = [
|
|
|
1821
1821
|
|
|
1822
1822
|
[[package]]
|
|
1823
1823
|
name = "perspective-client"
|
|
1824
|
-
version = "3.0.0-rc.
|
|
1824
|
+
version = "3.0.0-rc.2"
|
|
1825
1825
|
dependencies = [
|
|
1826
1826
|
"async-lock",
|
|
1827
1827
|
"futures",
|
|
@@ -1843,7 +1843,7 @@ dependencies = [
|
|
|
1843
1843
|
|
|
1844
1844
|
[[package]]
|
|
1845
1845
|
name = "perspective-js"
|
|
1846
|
-
version = "3.0.0-rc.
|
|
1846
|
+
version = "3.0.0-rc.2"
|
|
1847
1847
|
dependencies = [
|
|
1848
1848
|
"anyhow",
|
|
1849
1849
|
"base64 0.13.1",
|
|
@@ -1872,7 +1872,7 @@ dependencies = [
|
|
|
1872
1872
|
|
|
1873
1873
|
[[package]]
|
|
1874
1874
|
name = "perspective-lint"
|
|
1875
|
-
version = "3.0.0-rc.
|
|
1875
|
+
version = "3.0.0-rc.2"
|
|
1876
1876
|
dependencies = [
|
|
1877
1877
|
"glob",
|
|
1878
1878
|
"yew-fmt",
|
|
@@ -1880,7 +1880,7 @@ dependencies = [
|
|
|
1880
1880
|
|
|
1881
1881
|
[[package]]
|
|
1882
1882
|
name = "perspective-python"
|
|
1883
|
-
version = "3.0.0-rc.
|
|
1883
|
+
version = "3.0.0-rc.2"
|
|
1884
1884
|
dependencies = [
|
|
1885
1885
|
"async-lock",
|
|
1886
1886
|
"extend",
|
|
@@ -1898,7 +1898,7 @@ dependencies = [
|
|
|
1898
1898
|
|
|
1899
1899
|
[[package]]
|
|
1900
1900
|
name = "perspective-server"
|
|
1901
|
-
version = "3.0.0-rc.
|
|
1901
|
+
version = "3.0.0-rc.2"
|
|
1902
1902
|
dependencies = [
|
|
1903
1903
|
"async-lock",
|
|
1904
1904
|
"cmake",
|
|
@@ -1912,7 +1912,7 @@ dependencies = [
|
|
|
1912
1912
|
|
|
1913
1913
|
[[package]]
|
|
1914
1914
|
name = "perspective-viewer"
|
|
1915
|
-
version = "3.0.0-rc.
|
|
1915
|
+
version = "3.0.0-rc.2"
|
|
1916
1916
|
dependencies = [
|
|
1917
1917
|
"anyhow",
|
|
1918
1918
|
"async-lock",
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: perspective-python
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.0rc2
|
|
4
4
|
Classifier: Programming Language :: Rust
|
|
5
5
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
6
|
-
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
|
7
6
|
Summary: A data visualization and analytics component, especially well-suited for large and/or streaming datasets.
|
|
8
7
|
Home-Page: https://perspective.finos.org
|
|
9
8
|
Author: Andrew Stein <steinlink@gmail.com>
|
|
@@ -10,13 +10,14 @@
|
|
|
10
10
|
# ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
|
|
11
11
|
# ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
|
12
12
|
|
|
13
|
-
__version__ = "3.0.0-rc.
|
|
13
|
+
__version__ = "3.0.0-rc.2"
|
|
14
14
|
__all__ = [
|
|
15
15
|
"_jupyter_labextension_paths",
|
|
16
16
|
"PerspectiveError",
|
|
17
17
|
"PerspectiveWidget",
|
|
18
18
|
"PerspectiveViewer",
|
|
19
19
|
"PerspectiveTornadoHandler",
|
|
20
|
+
"ProxySession",
|
|
20
21
|
"Table",
|
|
21
22
|
"View",
|
|
22
23
|
]
|
|
@@ -73,6 +74,6 @@ class Client(PySyncClient):
|
|
|
73
74
|
return client
|
|
74
75
|
|
|
75
76
|
|
|
76
|
-
#
|
|
77
|
+
# Read by `jupyter labextension develop`
|
|
77
78
|
def _jupyter_labextension_paths():
|
|
78
79
|
return [{"src": "labextension", "dest": "@finos/perspective-jupyterlab"}]
|
|
@@ -11,16 +11,16 @@
|
|
|
11
11
|
# ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
|
12
12
|
|
|
13
13
|
try:
|
|
14
|
-
from .aiohttp import PerspectiveAIOHTTPHandler
|
|
14
|
+
from .aiohttp import PerspectiveAIOHTTPHandler # noqa: F401
|
|
15
15
|
except ImportError:
|
|
16
16
|
...
|
|
17
17
|
|
|
18
18
|
try:
|
|
19
|
-
from .starlette import PerspectiveStarletteHandler
|
|
19
|
+
from .starlette import PerspectiveStarletteHandler # noqa: F401
|
|
20
20
|
except ImportError:
|
|
21
21
|
...
|
|
22
22
|
|
|
23
23
|
try:
|
|
24
|
-
from .tornado import PerspectiveTornadoHandler
|
|
24
|
+
from .tornado import PerspectiveTornadoHandler # noqa: F401
|
|
25
25
|
except ImportError:
|
|
26
26
|
...
|
|
@@ -20,13 +20,35 @@ from random import random, randint, choice
|
|
|
20
20
|
from faker import Faker
|
|
21
21
|
|
|
22
22
|
|
|
23
|
-
fake = Faker()
|
|
24
|
-
|
|
25
23
|
# Our tests construct naive datetimes everywhere
|
|
26
24
|
# so setting it here is an easy way to fix it globally.
|
|
27
25
|
import os
|
|
26
|
+
|
|
27
|
+
# Perspective used to support datetime.date and datetime.datetime
|
|
28
|
+
# as Table() constructor arguments, but now we forward the parameters
|
|
29
|
+
# directly to JSON.loads. So to make sure the tests dont need to be
|
|
30
|
+
# so utterly transmogrified, we have this little hack :)
|
|
31
|
+
import json
|
|
32
|
+
|
|
33
|
+
|
|
28
34
|
os.environ["TZ"] = "UTC"
|
|
29
35
|
|
|
36
|
+
|
|
37
|
+
def new_encoder(self, obj):
|
|
38
|
+
if isinstance(obj, datetime):
|
|
39
|
+
return str(obj)
|
|
40
|
+
elif isinstance(obj, date):
|
|
41
|
+
return str(obj)
|
|
42
|
+
else:
|
|
43
|
+
return old(self, obj)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
old = json.JSONEncoder.default
|
|
47
|
+
json.JSONEncoder.default = new_encoder
|
|
48
|
+
|
|
49
|
+
fake = Faker()
|
|
50
|
+
|
|
51
|
+
|
|
30
52
|
def _make_date_time_index(size, time_unit):
|
|
31
53
|
return pd.date_range("2000-01-01", periods=size, freq=time_unit)
|
|
32
54
|
|
|
@@ -248,21 +270,3 @@ def superstore(count=100):
|
|
|
248
270
|
dat["Profit"] = round(random() * 1000, 2)
|
|
249
271
|
data.append(dat)
|
|
250
272
|
return pd.DataFrame(data)
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
# Perspective used to support datetime.date and datetime.datetime
|
|
254
|
-
# as Table() constructor arguments, but now we forward the parameters
|
|
255
|
-
# directly to JSON.loads. So to make sure the tests dont need to be
|
|
256
|
-
# so utterly transmogrified, we have this little hack :)
|
|
257
|
-
import json
|
|
258
|
-
old = json.JSONEncoder.default
|
|
259
|
-
|
|
260
|
-
def new_encoder(self, obj):
|
|
261
|
-
if isinstance(obj, datetime):
|
|
262
|
-
return str(obj)
|
|
263
|
-
elif isinstance(obj, date):
|
|
264
|
-
return str(obj)
|
|
265
|
-
else:
|
|
266
|
-
return old(self, obj)
|
|
267
|
-
|
|
268
|
-
json.JSONEncoder.default = new_encoder
|
|
@@ -20,7 +20,7 @@ from perspective import (
|
|
|
20
20
|
Server,
|
|
21
21
|
Client,
|
|
22
22
|
)
|
|
23
|
-
from pytest import mark
|
|
23
|
+
from pytest import mark
|
|
24
24
|
|
|
25
25
|
|
|
26
26
|
def syncify(f):
|
|
@@ -119,29 +119,6 @@ class TestAsync(object):
|
|
|
119
119
|
assert _task() == 10
|
|
120
120
|
tbl.delete()
|
|
121
121
|
|
|
122
|
-
@mark.skip(reason="We take a loop to construct the client now")
|
|
123
|
-
def test_async_call_loop_error_if_no_loop(self):
|
|
124
|
-
server = Server()
|
|
125
|
-
client = Client.from_server(
|
|
126
|
-
server, lambda fn, *args: TestAsync.loop.add_callback(fn, *args)
|
|
127
|
-
)
|
|
128
|
-
tbl = client.table({"a": "integer", "b": "float", "c": "string"})
|
|
129
|
-
|
|
130
|
-
with raises(PerspectiveError):
|
|
131
|
-
# loop not set - errors
|
|
132
|
-
tbl.update(data)
|
|
133
|
-
|
|
134
|
-
tbl.update(data)
|
|
135
|
-
|
|
136
|
-
@syncify
|
|
137
|
-
def _task():
|
|
138
|
-
return tbl.size()
|
|
139
|
-
|
|
140
|
-
# subsequent calls to call_loop will work if loop_callback is set.
|
|
141
|
-
assert _task() == 10
|
|
142
|
-
|
|
143
|
-
tbl.delete()
|
|
144
|
-
|
|
145
122
|
def test_async_multiple_managers_queue_process(self):
|
|
146
123
|
server = Server()
|
|
147
124
|
client = Client.from_server(
|
{perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/server/test_server.py
RENAMED
|
@@ -39,7 +39,7 @@ class TestServer(object):
|
|
|
39
39
|
def test_server_host_table(self):
|
|
40
40
|
server = Server()
|
|
41
41
|
client = Client.from_server(server)
|
|
42
|
-
|
|
42
|
+
client.table(data, name="table1")
|
|
43
43
|
table2 = client.open_table("table1")
|
|
44
44
|
assert table2.schema() == {"a": "integer", "b": "string"}
|
|
45
45
|
|
|
@@ -126,15 +126,11 @@ class TestServer(object):
|
|
|
126
126
|
assert client._get_view("view1").schema() == {"a": "integer", "b": "string"}
|
|
127
127
|
|
|
128
128
|
def test_server_create_view_zero(self):
|
|
129
|
-
message = {"id": 1, "table_name": "table1", "view_name": "view1", "cmd": "view"}
|
|
130
129
|
server = Server()
|
|
131
130
|
client = Client.from_server(server)
|
|
132
131
|
client.table(data, name="table1")
|
|
133
132
|
table = client.open_table("table1")
|
|
134
|
-
print(f"XXX: {dir(table)}")
|
|
135
133
|
assert table.view().dimensions()["num_view_rows"] == 3
|
|
136
|
-
# client._process(message, self.post)
|
|
137
|
-
# assert client._views["view1"].num_rows() == 3
|
|
138
134
|
|
|
139
135
|
def test_server_create_view_one(self):
|
|
140
136
|
server = Server()
|
|
@@ -10,10 +10,9 @@
|
|
|
10
10
|
# ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
|
|
11
11
|
# ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
|
12
12
|
|
|
13
|
-
import
|
|
14
|
-
from datetime import date, datetime, timezone
|
|
13
|
+
from datetime import date, datetime
|
|
15
14
|
import perspective
|
|
16
|
-
from pytest import mark, raises
|
|
15
|
+
from pytest import mark, raises
|
|
17
16
|
import pytest
|
|
18
17
|
import perspective as psp
|
|
19
18
|
|
|
@@ -446,7 +445,10 @@ class TestTable:
|
|
|
446
445
|
},
|
|
447
446
|
index="a",
|
|
448
447
|
)
|
|
449
|
-
|
|
448
|
+
|
|
449
|
+
def ts(x):
|
|
450
|
+
return int(datetime.timestamp(x) * 1000)
|
|
451
|
+
|
|
450
452
|
assert tbl.view().to_columns() == {
|
|
451
453
|
"a": [
|
|
452
454
|
None,
|
|
@@ -216,7 +216,7 @@ if os.name != "nt":
|
|
|
216
216
|
def test_table_datetime_cant_convert_from_int(self):
|
|
217
217
|
data = pd.DataFrame({"a": [0]})
|
|
218
218
|
table = Table({"a": "datetime"})
|
|
219
|
-
with raises(PerspectiveError)
|
|
219
|
+
with raises(PerspectiveError):
|
|
220
220
|
table.update(data)
|
|
221
221
|
# assert str(ex.value) == "..."
|
|
222
222
|
|
|
@@ -58,7 +58,7 @@ class TestTableInfer(object):
|
|
|
58
58
|
"b": [False, False, False, False, False],
|
|
59
59
|
}
|
|
60
60
|
|
|
61
|
-
def
|
|
61
|
+
def test_table_infer_bool_variant(self):
|
|
62
62
|
data = {"a": [None, None, None, None, True, True, True]}
|
|
63
63
|
tbl = Table(data)
|
|
64
64
|
assert tbl.schema() == {"a": "boolean"}
|
|
@@ -10,8 +10,6 @@
|
|
|
10
10
|
# ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
|
|
11
11
|
# ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
|
12
12
|
|
|
13
|
-
from datetime import date, datetime
|
|
14
|
-
from pytest import mark
|
|
15
13
|
import perspective as psp
|
|
16
14
|
|
|
17
15
|
client = psp.Server().new_local_client()
|
{perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_to_arrow.py
RENAMED
|
@@ -93,7 +93,10 @@ class TestToArrow(object):
|
|
|
93
93
|
assert tbl.schema() == {"a": "date"}
|
|
94
94
|
arr = tbl.view().to_arrow()
|
|
95
95
|
tbl2 = Table(arr)
|
|
96
|
-
|
|
96
|
+
|
|
97
|
+
def ts(x):
|
|
98
|
+
return int(datetime.timestamp(x) * 1000)
|
|
99
|
+
|
|
97
100
|
assert tbl2.schema() == tbl.schema()
|
|
98
101
|
assert tbl2.view().to_columns() == {
|
|
99
102
|
"a": [
|
{perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_view.py
RENAMED
|
@@ -10,7 +10,6 @@
|
|
|
10
10
|
# ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
|
|
11
11
|
# ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
|
12
12
|
|
|
13
|
-
import random
|
|
14
13
|
import pandas as pd
|
|
15
14
|
import numpy as np
|
|
16
15
|
from perspective import PerspectiveError
|
|
@@ -1627,8 +1627,8 @@ class TestViewExpression(object):
|
|
|
1627
1627
|
expected_domain = re.search(r"@([a-zA-Z.]+)$", source).group(1)
|
|
1628
1628
|
assert results["address"][i] == expected_address
|
|
1629
1629
|
assert results["domain"][i] == expected_domain
|
|
1630
|
-
assert results["is_email?"][i]
|
|
1631
|
-
assert results["has_at?"][i]
|
|
1630
|
+
assert results["is_email?"][i]
|
|
1631
|
+
assert results["has_at?"][i]
|
|
1632
1632
|
|
|
1633
1633
|
def test_view_expression_number(self):
|
|
1634
1634
|
def digits():
|
|
@@ -1672,7 +1672,7 @@ class TestViewExpression(object):
|
|
|
1672
1672
|
source = results["a"][i]
|
|
1673
1673
|
expected = re.sub(r"[ -]", "", source)
|
|
1674
1674
|
assert results["parsed"][i] == expected
|
|
1675
|
-
assert results["is_number?"][i]
|
|
1675
|
+
assert results["is_number?"][i]
|
|
1676
1676
|
|
|
1677
1677
|
def test_view_expression_newlines(self):
|
|
1678
1678
|
table = Table(
|
|
@@ -1922,7 +1922,7 @@ class TestViewExpression(object):
|
|
|
1922
1922
|
r"^[0-9]{4}", "long string, very cool!", source
|
|
1923
1923
|
)
|
|
1924
1924
|
|
|
1925
|
-
def
|
|
1925
|
+
def test_view_replace_invalid_variation(self):
|
|
1926
1926
|
table = Table({"a": "string", "b": "string"})
|
|
1927
1927
|
expressions = [
|
|
1928
1928
|
"""//v
|
|
@@ -12,18 +12,18 @@
|
|
|
12
12
|
|
|
13
13
|
import base64
|
|
14
14
|
import jinja2
|
|
15
|
-
import json
|
|
16
15
|
import logging
|
|
17
16
|
import os
|
|
18
|
-
|
|
19
|
-
from functools import partial
|
|
17
|
+
import re
|
|
20
18
|
|
|
21
19
|
from ipywidgets import DOMWidget
|
|
22
20
|
from traitlets import Unicode, observe
|
|
23
21
|
from ..viewer import PerspectiveViewer
|
|
24
22
|
import importlib
|
|
25
23
|
|
|
26
|
-
__version__ =
|
|
24
|
+
__version__ = re.sub(
|
|
25
|
+
"(rc|alpha|beta)", "-\\1.", importlib.metadata.version("perspective-python")
|
|
26
|
+
)
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
class PerspectiveWidget(DOMWidget, PerspectiveViewer):
|
|
@@ -16,17 +16,16 @@ build-backend = "maturin"
|
|
|
16
16
|
|
|
17
17
|
[project]
|
|
18
18
|
name = "perspective-python"
|
|
19
|
-
version = "3.0.0-rc1"
|
|
20
19
|
requires-python = ">=3.9"
|
|
21
20
|
dynamic = ["version"]
|
|
22
21
|
classifiers = [
|
|
23
22
|
"Programming Language :: Rust",
|
|
24
23
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
25
|
-
"Programming Language :: Python :: Implementation :: PyPy",
|
|
26
24
|
]
|
|
27
25
|
|
|
28
26
|
[tool.maturin]
|
|
29
|
-
|
|
27
|
+
module-name = "perspective"
|
|
28
|
+
data = "perspective_python-3.0.0rc2.data"
|
|
30
29
|
features = ["pyo3/extension-module"]
|
|
31
30
|
manifest-path = "rust/perspective-python/Cargo.toml"
|
|
32
31
|
|
{perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/Cargo.toml
RENAMED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
[package]
|
|
14
14
|
name = "perspective-client"
|
|
15
|
-
version = "3.0.0-rc.
|
|
15
|
+
version = "3.0.0-rc.2"
|
|
16
16
|
authors = ["Andrew Stein <steinlink@gmail.com>"]
|
|
17
17
|
edition = "2021"
|
|
18
18
|
description = "A data visualization and analytics component, especially well-suited for large and/or streaming datasets."
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Provides the [`perspective_client::SystemInfo`] struct.
|
|
@@ -36,13 +36,13 @@ client), where the data is stored and all calculation occurs.
|
|
|
36
36
|
|
|
37
37
|
#### JavaScript
|
|
38
38
|
|
|
39
|
-
```
|
|
39
|
+
```javascript
|
|
40
40
|
// Load a CSV
|
|
41
41
|
const table = await client.table("x,y\n1,2\n3,4");
|
|
42
42
|
|
|
43
43
|
// Load an Arrow
|
|
44
44
|
import * as fs from "node:fs/promises";
|
|
45
|
-
const table2 = await client.table(fs.readFile("superstore.arrow"));
|
|
45
|
+
const table2 = await client.table(await fs.readFile("superstore.arrow"));
|
|
46
46
|
```
|
|
47
47
|
|
|
48
48
|
#### Python
|
{perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/client.md
RENAMED
|
@@ -3,7 +3,7 @@ locally in-memory or remote over some transport like a `WebSocket`. To create,
|
|
|
3
3
|
use the appropriate constructor function:
|
|
4
4
|
|
|
5
5
|
- `websocket` - Create a connection to a WebSocket `Server` instance.
|
|
6
|
-
- `worker`
|
|
6
|
+
- `worker` (JavaScript) - Unlike the other `Client` constructors, the
|
|
7
7
|
`worker` version also owns its `Server`, which runs in a dedicated Web
|
|
8
8
|
Worker.
|
|
9
9
|
- `local` [Rust, Python] - Create an `Client` connected to an in-memory,
|
|
@@ -14,5 +14,5 @@ use the appropriate constructor function:
|
|
|
14
14
|
#### JavaScript
|
|
15
15
|
|
|
16
16
|
```javascript
|
|
17
|
-
const client = perspective.worker();
|
|
17
|
+
const client = await perspective.worker();
|
|
18
18
|
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Get a copy of the [`Client`] this [`Table`] came from.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
A copy of the config object passed to the [`perspective_client::Table::view`] method which created this [`perspective_client::View`].
|
{perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/view.rs
RENAMED
|
@@ -273,9 +273,9 @@ impl View {
|
|
|
273
273
|
}
|
|
274
274
|
}
|
|
275
275
|
|
|
276
|
-
/// This is used when constructing a [`Table`] from a
|
|
277
|
-
/// The callback needs to be async to wire up the views
|
|
278
|
-
/// tables.
|
|
276
|
+
/// This is used when constructing a [`super::table::Table`] from a
|
|
277
|
+
/// [`View`]. The callback needs to be async to wire up the views
|
|
278
|
+
/// on_update to the tables.
|
|
279
279
|
pub async fn on_update<T, U>(&self, on_update: T, options: OnUpdateOptions) -> ClientResult<u32>
|
|
280
280
|
where
|
|
281
281
|
T: Fn(ViewOnUpdateResp) -> U + Send + Sync + 'static,
|
{perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/Cargo.toml
RENAMED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
[package]
|
|
14
14
|
name = "perspective-python"
|
|
15
|
-
version = "3.0.0-rc.
|
|
15
|
+
version = "3.0.0-rc.2"
|
|
16
16
|
edition = "2021"
|
|
17
17
|
description = "A data visualization and analytics component, especially well-suited for large and/or streaming datasets."
|
|
18
18
|
repository = "https://github.com/finos/perspective"
|
|
@@ -40,7 +40,6 @@ external-cpp = [
|
|
|
40
40
|
]
|
|
41
41
|
|
|
42
42
|
[lib]
|
|
43
|
-
name = "perspective"
|
|
44
43
|
crate-type = ["cdylib"]
|
|
45
44
|
|
|
46
45
|
[build-dependencies]
|
|
@@ -49,8 +48,8 @@ python-config-rs = "0.1.2"
|
|
|
49
48
|
|
|
50
49
|
[dependencies]
|
|
51
50
|
async-lock = "2.5.0"
|
|
52
|
-
perspective-client = { version = "3.0.0-rc.
|
|
53
|
-
perspective-server = { version = "3.0.0-rc.
|
|
51
|
+
perspective-client = { version = "3.0.0-rc.2", path = "../perspective-client" }
|
|
52
|
+
perspective-server = { version = "3.0.0-rc.2", path = "../perspective-server" }
|
|
54
53
|
pollster = "0.3.0"
|
|
55
54
|
extend = "1.1.2"
|
|
56
55
|
futures = "0.3.28"
|
|
@@ -11,13 +11,11 @@
|
|
|
11
11
|
# ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
|
12
12
|
|
|
13
13
|
import multiprocessing
|
|
14
|
-
import asyncio
|
|
15
14
|
import os
|
|
16
15
|
import os.path
|
|
17
16
|
import time
|
|
18
17
|
from perspective.core.globalpsp import shared_client
|
|
19
18
|
from perspective.handlers.tornado import PerspectiveTornadoHandler
|
|
20
|
-
from tornado.websocket import websocket_connect
|
|
21
19
|
import tornado
|
|
22
20
|
import threading
|
|
23
21
|
import numpy
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Provides the [`perspective_client::SystemInfo`] struct.
|
|
@@ -36,13 +36,13 @@ client), where the data is stored and all calculation occurs.
|
|
|
36
36
|
|
|
37
37
|
#### JavaScript
|
|
38
38
|
|
|
39
|
-
```
|
|
39
|
+
```javascript
|
|
40
40
|
// Load a CSV
|
|
41
41
|
const table = await client.table("x,y\n1,2\n3,4");
|
|
42
42
|
|
|
43
43
|
// Load an Arrow
|
|
44
44
|
import * as fs from "node:fs/promises";
|
|
45
|
-
const table2 = await client.table(fs.readFile("superstore.arrow"));
|
|
45
|
+
const table2 = await client.table(await fs.readFile("superstore.arrow"));
|
|
46
46
|
```
|
|
47
47
|
|
|
48
48
|
#### Python
|
{perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/client.md
RENAMED
|
@@ -3,7 +3,7 @@ locally in-memory or remote over some transport like a `WebSocket`. To create,
|
|
|
3
3
|
use the appropriate constructor function:
|
|
4
4
|
|
|
5
5
|
- `websocket` - Create a connection to a WebSocket `Server` instance.
|
|
6
|
-
- `worker`
|
|
6
|
+
- `worker` (JavaScript) - Unlike the other `Client` constructors, the
|
|
7
7
|
`worker` version also owns its `Server`, which runs in a dedicated Web
|
|
8
8
|
Worker.
|
|
9
9
|
- `local` [Rust, Python] - Create an `Client` connected to an in-memory,
|
|
@@ -14,5 +14,5 @@ use the appropriate constructor function:
|
|
|
14
14
|
#### JavaScript
|
|
15
15
|
|
|
16
16
|
```javascript
|
|
17
|
-
const client = perspective.worker();
|
|
17
|
+
const client = await perspective.worker();
|
|
18
18
|
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Get a copy of the [`Client`] this [`Table`] came from.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
A copy of the config object passed to the [`perspective_client::Table::view`] method which created this [`perspective_client::View`].
|
|
@@ -10,13 +10,14 @@
|
|
|
10
10
|
# ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
|
|
11
11
|
# ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
|
12
12
|
|
|
13
|
-
__version__ = "3.0.0-rc.
|
|
13
|
+
__version__ = "3.0.0-rc.2"
|
|
14
14
|
__all__ = [
|
|
15
15
|
"_jupyter_labextension_paths",
|
|
16
16
|
"PerspectiveError",
|
|
17
17
|
"PerspectiveWidget",
|
|
18
18
|
"PerspectiveViewer",
|
|
19
19
|
"PerspectiveTornadoHandler",
|
|
20
|
+
"ProxySession",
|
|
20
21
|
"Table",
|
|
21
22
|
"View",
|
|
22
23
|
]
|
|
@@ -73,6 +74,6 @@ class Client(PySyncClient):
|
|
|
73
74
|
return client
|
|
74
75
|
|
|
75
76
|
|
|
76
|
-
#
|
|
77
|
+
# Read by `jupyter labextension develop`
|
|
77
78
|
def _jupyter_labextension_paths():
|
|
78
79
|
return [{"src": "labextension", "dest": "@finos/perspective-jupyterlab"}]
|
|
@@ -11,16 +11,16 @@
|
|
|
11
11
|
# ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
|
|
12
12
|
|
|
13
13
|
try:
|
|
14
|
-
from .aiohttp import PerspectiveAIOHTTPHandler
|
|
14
|
+
from .aiohttp import PerspectiveAIOHTTPHandler # noqa: F401
|
|
15
15
|
except ImportError:
|
|
16
16
|
...
|
|
17
17
|
|
|
18
18
|
try:
|
|
19
|
-
from .starlette import PerspectiveStarletteHandler
|
|
19
|
+
from .starlette import PerspectiveStarletteHandler # noqa: F401
|
|
20
20
|
except ImportError:
|
|
21
21
|
...
|
|
22
22
|
|
|
23
23
|
try:
|
|
24
|
-
from .tornado import PerspectiveTornadoHandler
|
|
24
|
+
from .tornado import PerspectiveTornadoHandler # noqa: F401
|
|
25
25
|
except ImportError:
|
|
26
26
|
...
|