├── .devcontainer └── devcontainer.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── compatibility.md │ ├── deprecation.md │ ├── feature_request.md │ └── questions.md └── workflows │ ├── publish.yml │ ├── test_all.yml │ ├── test_core.yml │ ├── test_dask.yml │ ├── test_no_sql.yml │ ├── test_notebook.yml │ ├── test_ray.yml │ ├── test_spark.yml │ └── test_win.yml ├── .gitignore ├── .gitpod.yml ├── .pre-commit-config.yaml ├── .pylintrc ├── .readthedocs.yaml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── RELEASE.md ├── docs ├── Makefile ├── _static │ ├── fugue_logo_trimmed.svg │ ├── logo.svg │ └── logo_doc.svg ├── _templates │ ├── package.rst_t │ └── toc.rst_t ├── api.rst ├── api │ ├── fugue.bag.rst │ ├── fugue.collections.rst │ ├── fugue.column.rst │ ├── fugue.dataframe.rst │ ├── fugue.dataset.rst │ ├── fugue.execution.rst │ ├── fugue.extensions.creator.rst │ ├── fugue.extensions.outputter.rst │ ├── fugue.extensions.processor.rst │ ├── fugue.extensions.rst │ ├── fugue.extensions.transformer.rst │ ├── fugue.rpc.rst │ ├── fugue.rst │ ├── fugue.sql.rst │ └── fugue.workflow.rst ├── api_dask │ └── fugue_dask.rst ├── api_duckdb │ └── fugue_duckdb.rst ├── api_ibis │ ├── fugue_ibis.execution.rst │ └── fugue_ibis.rst ├── api_ray │ └── fugue_ray.rst ├── api_spark │ └── fugue_spark.rst ├── api_sql │ └── fugue_sql.rst ├── conf.py ├── index.rst ├── make.bat ├── top_api.rst └── tutorials.rst ├── fugue ├── __init__.py ├── _utils │ ├── __init__.py │ ├── display.py │ ├── exception.py │ ├── interfaceless.py │ ├── io.py │ ├── misc.py │ └── registry.py ├── api.py ├── bag │ ├── __init__.py │ ├── array_bag.py │ └── bag.py ├── collections │ ├── __init__.py │ ├── partition.py │ ├── sql.py │ └── yielded.py ├── column │ ├── __init__.py │ ├── expressions.py │ ├── functions.py │ └── sql.py ├── constants.py ├── dataframe │ ├── __init__.py │ ├── api.py │ ├── array_dataframe.py │ ├── arrow_dataframe.py │ ├── dataframe.py │ ├── dataframe_iterable_dataframe.py │ ├── dataframes.py │ ├── function_wrapper.py │ ├── iterable_dataframe.py │ ├── pandas_dataframe.py │ └── utils.py ├── dataset │ ├── __init__.py │ ├── api.py │ └── dataset.py ├── dev.py ├── exceptions.py ├── execution │ ├── __init__.py │ ├── api.py │ ├── execution_engine.py │ ├── factory.py │ └── native_execution_engine.py ├── extensions │ ├── __init__.py │ ├── _builtins │ │ ├── __init__.py │ │ ├── creators.py │ │ ├── outputters.py │ │ └── processors.py │ ├── _utils.py │ ├── context.py │ ├── creator │ │ ├── __init__.py │ │ ├── convert.py │ │ └── creator.py │ ├── outputter │ │ ├── __init__.py │ │ ├── convert.py │ │ └── outputter.py │ ├── processor │ │ ├── __init__.py │ │ ├── convert.py │ │ └── processor.py │ └── transformer │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── convert.py │ │ └── transformer.py ├── plugins.py ├── py.typed ├── registry.py ├── rpc │ ├── __init__.py │ ├── base.py │ └── flask.py ├── sql │ ├── __init__.py │ ├── _utils.py │ ├── _visitors.py │ ├── api.py │ └── workflow.py ├── test │ ├── __init__.py │ ├── pandas_tester.py │ └── plugins.py └── workflow │ ├── __init__.py │ ├── _checkpoint.py │ ├── _tasks.py │ ├── _workflow_context.py │ ├── api.py │ ├── input.py │ ├── module.py │ └── workflow.py ├── fugue_contrib ├── __init__.py ├── contrib.py ├── seaborn │ └── __init__.py └── viz │ ├── __init__.py │ └── _ext.py ├── fugue_dask ├── __init__.py ├── _constants.py ├── _dask_sql_wrapper.py ├── _io.py ├── _utils.py ├── dataframe.py ├── execution_engine.py ├── registry.py └── tester.py ├── fugue_duckdb ├── __init__.py ├── _io.py ├── _utils.py ├── dask.py ├── dataframe.py ├── execution_engine.py ├── registry.py └── tester.py ├── fugue_ibis ├── __init__.py ├── _compat.py ├── _utils.py ├── dataframe.py └── execution_engine.py ├── fugue_notebook ├── __init__.py ├── env.py └── nbextension │ ├── README.md │ ├── __init__.py │ ├── description.yaml │ └── main.js ├── fugue_polars ├── __init__.py ├── _utils.py ├── polars_dataframe.py └── registry.py ├── fugue_ray ├── __init__.py ├── _constants.py ├── _utils │ ├── __init__.py │ ├── cluster.py │ ├── dataframe.py │ └── io.py ├── dataframe.py ├── execution_engine.py ├── registry.py └── tester.py ├── fugue_spark ├── __init__.py ├── _constants.py ├── _utils │ ├── __init__.py │ ├── convert.py │ ├── io.py │ ├── misc.py │ └── partition.py ├── dataframe.py ├── execution_engine.py ├── registry.py └── tester.py ├── fugue_sql ├── __init__.py └── exceptions.py ├── fugue_test ├── __init__.py ├── bag_suite.py ├── builtin_suite.py ├── dataframe_suite.py ├── execution_suite.py └── fixtures.py ├── fugue_version └── __init__.py ├── images ├── architecture.png ├── extensions.png └── logo.svg ├── requirements.txt ├── scripts └── setupsparkconnect.sh ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── fugue ├── __init__.py ├── bag │ ├── __init__.py │ └── test_array_bag.py ├── collections │ ├── __init__.py │ ├── test_partition.py │ └── test_sql.py ├── column │ ├── __init__.py │ ├── test_expressions.py │ ├── test_functions.py │ └── test_sql.py ├── dataframe │ ├── __init__.py │ ├── test_array_dataframe.py │ ├── test_arrow_dataframe.py │ ├── test_dataframe.py │ ├── test_dataframe_iterable_dataframe.py │ ├── test_dataframes.py │ ├── test_function_wrapper.py │ ├── test_iterable_dataframe.py │ ├── test_pandas_dataframe.py │ └── test_utils.py ├── execution │ ├── __init__.py │ ├── test_api.py │ ├── test_execution_engine.py │ ├── test_factory.py │ └── test_naive_execution_engine.py ├── extensions │ ├── __init__.py │ ├── creator │ │ ├── __init__.py │ │ └── test_convert.py │ ├── outputter │ │ ├── __init__.py │ │ └── test_convert.py │ ├── processor │ │ ├── __init__.py │ │ └── test_convert.py │ ├── test_utils.py │ └── transformer │ │ ├── __init__.py │ │ ├── test_convert_cotransformer.py │ │ ├── test_convert_output_cotransformer.py │ │ ├── test_convert_output_transformer.py │ │ └── test_convert_transformer.py ├── rpc │ ├── __init__.py │ ├── test_base.py │ ├── test_flask.py │ └── test_func.py ├── sql │ ├── __init__.py │ ├── test_utils.py │ ├── test_visitors.py │ ├── test_workflow.py │ └── test_workflow_parse.py ├── test │ ├── __init__.py │ └── test_plugins.py ├── test_interfaceless.py ├── utils │ ├── __init__.py │ ├── test_interfaceless.py │ ├── test_io.py │ └── test_misc.py └── workflow │ ├── __init__.py │ ├── test_module.py │ ├── test_runtime_exception.py │ ├── test_workflow.py │ ├── test_workflow_determinism.py │ └── test_workflow_parallel.py ├── fugue_dask ├── __init__.py ├── test_dataframe.py ├── test_execution_engine.py ├── test_importless.py ├── test_io.py ├── test_sql.py └── test_utils.py ├── fugue_duckdb ├── __init__.py ├── test_dask.py ├── test_dataframe.py ├── test_execution_engine.py ├── test_importless.py └── test_utils.py ├── fugue_ibis ├── __init__.py ├── mock │ ├── __init__.py │ ├── dataframe.py │ ├── execution_engine.py │ ├── registry.py │ └── tester.py ├── test_dataframe.py ├── test_execution_engine.py └── test_utils.py ├── fugue_notebook ├── __init__.py └── test_notebook.ipynb ├── fugue_polars ├── __init__.py ├── test_api.py ├── test_dataframe.py └── test_transform.py ├── fugue_ray ├── __init__.py ├── test_dataframe.py ├── test_execution_engine.py ├── test_registry.py └── test_utils.py └── fugue_spark ├── __init__.py ├── test_dataframe.py ├── test_execution_engine.py ├── test_importless.py ├── test_spark_connect.py ├── test_sql.py └── utils ├── __init__.py ├── test_convert.py ├── test_io.py └── test_partition.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/compatibility.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/.github/ISSUE_TEMPLATE/compatibility.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/deprecation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/.github/ISSUE_TEMPLATE/deprecation.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/.github/ISSUE_TEMPLATE/questions.md -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test_all.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/.github/workflows/test_all.yml -------------------------------------------------------------------------------- /.github/workflows/test_core.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/.github/workflows/test_core.yml -------------------------------------------------------------------------------- /.github/workflows/test_dask.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/.github/workflows/test_dask.yml -------------------------------------------------------------------------------- /.github/workflows/test_no_sql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/.github/workflows/test_no_sql.yml -------------------------------------------------------------------------------- /.github/workflows/test_notebook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/.github/workflows/test_notebook.yml -------------------------------------------------------------------------------- /.github/workflows/test_ray.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/.github/workflows/test_ray.yml -------------------------------------------------------------------------------- /.github/workflows/test_spark.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/.github/workflows/test_spark.yml -------------------------------------------------------------------------------- /.github/workflows/test_win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/.github/workflows/test_win.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/.pylintrc -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/RELEASE.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/fugue_logo_trimmed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/_static/fugue_logo_trimmed.svg -------------------------------------------------------------------------------- /docs/_static/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/_static/logo.svg -------------------------------------------------------------------------------- /docs/_static/logo_doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/_static/logo_doc.svg -------------------------------------------------------------------------------- /docs/_templates/package.rst_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/_templates/package.rst_t -------------------------------------------------------------------------------- /docs/_templates/toc.rst_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/_templates/toc.rst_t -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/api/fugue.bag.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api/fugue.bag.rst -------------------------------------------------------------------------------- /docs/api/fugue.collections.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api/fugue.collections.rst -------------------------------------------------------------------------------- /docs/api/fugue.column.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api/fugue.column.rst -------------------------------------------------------------------------------- /docs/api/fugue.dataframe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api/fugue.dataframe.rst -------------------------------------------------------------------------------- /docs/api/fugue.dataset.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api/fugue.dataset.rst -------------------------------------------------------------------------------- /docs/api/fugue.execution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api/fugue.execution.rst -------------------------------------------------------------------------------- /docs/api/fugue.extensions.creator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api/fugue.extensions.creator.rst -------------------------------------------------------------------------------- /docs/api/fugue.extensions.outputter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api/fugue.extensions.outputter.rst -------------------------------------------------------------------------------- /docs/api/fugue.extensions.processor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api/fugue.extensions.processor.rst -------------------------------------------------------------------------------- /docs/api/fugue.extensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api/fugue.extensions.rst -------------------------------------------------------------------------------- /docs/api/fugue.extensions.transformer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api/fugue.extensions.transformer.rst -------------------------------------------------------------------------------- /docs/api/fugue.rpc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api/fugue.rpc.rst -------------------------------------------------------------------------------- /docs/api/fugue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api/fugue.rst -------------------------------------------------------------------------------- /docs/api/fugue.sql.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api/fugue.sql.rst -------------------------------------------------------------------------------- /docs/api/fugue.workflow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api/fugue.workflow.rst -------------------------------------------------------------------------------- /docs/api_dask/fugue_dask.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api_dask/fugue_dask.rst -------------------------------------------------------------------------------- /docs/api_duckdb/fugue_duckdb.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api_duckdb/fugue_duckdb.rst -------------------------------------------------------------------------------- /docs/api_ibis/fugue_ibis.execution.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api_ibis/fugue_ibis.execution.rst -------------------------------------------------------------------------------- /docs/api_ibis/fugue_ibis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api_ibis/fugue_ibis.rst -------------------------------------------------------------------------------- /docs/api_ray/fugue_ray.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api_ray/fugue_ray.rst -------------------------------------------------------------------------------- /docs/api_spark/fugue_spark.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api_spark/fugue_spark.rst -------------------------------------------------------------------------------- /docs/api_sql/fugue_sql.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/api_sql/fugue_sql.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/top_api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/top_api.rst -------------------------------------------------------------------------------- /docs/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/docs/tutorials.rst -------------------------------------------------------------------------------- /fugue/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/__init__.py -------------------------------------------------------------------------------- /fugue/_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fugue/_utils/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/_utils/display.py -------------------------------------------------------------------------------- /fugue/_utils/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/_utils/exception.py -------------------------------------------------------------------------------- /fugue/_utils/interfaceless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/_utils/interfaceless.py -------------------------------------------------------------------------------- /fugue/_utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/_utils/io.py -------------------------------------------------------------------------------- /fugue/_utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/_utils/misc.py -------------------------------------------------------------------------------- /fugue/_utils/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/_utils/registry.py -------------------------------------------------------------------------------- /fugue/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/api.py -------------------------------------------------------------------------------- /fugue/bag/__init__.py: -------------------------------------------------------------------------------- 1 | # flake8: noqa 2 | from .bag import Bag, LocalBag 3 | -------------------------------------------------------------------------------- /fugue/bag/array_bag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/bag/array_bag.py -------------------------------------------------------------------------------- /fugue/bag/bag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/bag/bag.py -------------------------------------------------------------------------------- /fugue/collections/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fugue/collections/partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/collections/partition.py -------------------------------------------------------------------------------- /fugue/collections/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/collections/sql.py -------------------------------------------------------------------------------- /fugue/collections/yielded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/collections/yielded.py -------------------------------------------------------------------------------- /fugue/column/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/column/__init__.py -------------------------------------------------------------------------------- /fugue/column/expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/column/expressions.py -------------------------------------------------------------------------------- /fugue/column/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/column/functions.py -------------------------------------------------------------------------------- /fugue/column/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/column/sql.py -------------------------------------------------------------------------------- /fugue/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/constants.py -------------------------------------------------------------------------------- /fugue/dataframe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/dataframe/__init__.py -------------------------------------------------------------------------------- /fugue/dataframe/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/dataframe/api.py -------------------------------------------------------------------------------- /fugue/dataframe/array_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/dataframe/array_dataframe.py -------------------------------------------------------------------------------- /fugue/dataframe/arrow_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/dataframe/arrow_dataframe.py -------------------------------------------------------------------------------- /fugue/dataframe/dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/dataframe/dataframe.py -------------------------------------------------------------------------------- /fugue/dataframe/dataframe_iterable_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/dataframe/dataframe_iterable_dataframe.py -------------------------------------------------------------------------------- /fugue/dataframe/dataframes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/dataframe/dataframes.py -------------------------------------------------------------------------------- /fugue/dataframe/function_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/dataframe/function_wrapper.py -------------------------------------------------------------------------------- /fugue/dataframe/iterable_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/dataframe/iterable_dataframe.py -------------------------------------------------------------------------------- /fugue/dataframe/pandas_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/dataframe/pandas_dataframe.py -------------------------------------------------------------------------------- /fugue/dataframe/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/dataframe/utils.py -------------------------------------------------------------------------------- /fugue/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/dataset/__init__.py -------------------------------------------------------------------------------- /fugue/dataset/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/dataset/api.py -------------------------------------------------------------------------------- /fugue/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/dataset/dataset.py -------------------------------------------------------------------------------- /fugue/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/dev.py -------------------------------------------------------------------------------- /fugue/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/exceptions.py -------------------------------------------------------------------------------- /fugue/execution/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/execution/__init__.py -------------------------------------------------------------------------------- /fugue/execution/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/execution/api.py -------------------------------------------------------------------------------- /fugue/execution/execution_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/execution/execution_engine.py -------------------------------------------------------------------------------- /fugue/execution/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/execution/factory.py -------------------------------------------------------------------------------- /fugue/execution/native_execution_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/execution/native_execution_engine.py -------------------------------------------------------------------------------- /fugue/extensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/extensions/__init__.py -------------------------------------------------------------------------------- /fugue/extensions/_builtins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/extensions/_builtins/__init__.py -------------------------------------------------------------------------------- /fugue/extensions/_builtins/creators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/extensions/_builtins/creators.py -------------------------------------------------------------------------------- /fugue/extensions/_builtins/outputters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/extensions/_builtins/outputters.py -------------------------------------------------------------------------------- /fugue/extensions/_builtins/processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/extensions/_builtins/processors.py -------------------------------------------------------------------------------- /fugue/extensions/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/extensions/_utils.py -------------------------------------------------------------------------------- /fugue/extensions/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/extensions/context.py -------------------------------------------------------------------------------- /fugue/extensions/creator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/extensions/creator/__init__.py -------------------------------------------------------------------------------- /fugue/extensions/creator/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/extensions/creator/convert.py -------------------------------------------------------------------------------- /fugue/extensions/creator/creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/extensions/creator/creator.py -------------------------------------------------------------------------------- /fugue/extensions/outputter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/extensions/outputter/__init__.py -------------------------------------------------------------------------------- /fugue/extensions/outputter/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/extensions/outputter/convert.py -------------------------------------------------------------------------------- /fugue/extensions/outputter/outputter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/extensions/outputter/outputter.py -------------------------------------------------------------------------------- /fugue/extensions/processor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/extensions/processor/__init__.py -------------------------------------------------------------------------------- /fugue/extensions/processor/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/extensions/processor/convert.py -------------------------------------------------------------------------------- /fugue/extensions/processor/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/extensions/processor/processor.py -------------------------------------------------------------------------------- /fugue/extensions/transformer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/extensions/transformer/__init__.py -------------------------------------------------------------------------------- /fugue/extensions/transformer/constants.py: -------------------------------------------------------------------------------- 1 | OUTPUT_TRANSFORMER_DUMMY_SCHEMA = "__output_no_data__:int" 2 | -------------------------------------------------------------------------------- /fugue/extensions/transformer/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/extensions/transformer/convert.py -------------------------------------------------------------------------------- /fugue/extensions/transformer/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/extensions/transformer/transformer.py -------------------------------------------------------------------------------- /fugue/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/plugins.py -------------------------------------------------------------------------------- /fugue/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fugue/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/registry.py -------------------------------------------------------------------------------- /fugue/rpc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/rpc/__init__.py -------------------------------------------------------------------------------- /fugue/rpc/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/rpc/base.py -------------------------------------------------------------------------------- /fugue/rpc/flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/rpc/flask.py -------------------------------------------------------------------------------- /fugue/sql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fugue/sql/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/sql/_utils.py -------------------------------------------------------------------------------- /fugue/sql/_visitors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/sql/_visitors.py -------------------------------------------------------------------------------- /fugue/sql/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/sql/api.py -------------------------------------------------------------------------------- /fugue/sql/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/sql/workflow.py -------------------------------------------------------------------------------- /fugue/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/test/__init__.py -------------------------------------------------------------------------------- /fugue/test/pandas_tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/test/pandas_tester.py -------------------------------------------------------------------------------- /fugue/test/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/test/plugins.py -------------------------------------------------------------------------------- /fugue/workflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/workflow/__init__.py -------------------------------------------------------------------------------- /fugue/workflow/_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/workflow/_checkpoint.py -------------------------------------------------------------------------------- /fugue/workflow/_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/workflow/_tasks.py -------------------------------------------------------------------------------- /fugue/workflow/_workflow_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/workflow/_workflow_context.py -------------------------------------------------------------------------------- /fugue/workflow/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/workflow/api.py -------------------------------------------------------------------------------- /fugue/workflow/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/workflow/input.py -------------------------------------------------------------------------------- /fugue/workflow/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/workflow/module.py -------------------------------------------------------------------------------- /fugue/workflow/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue/workflow/workflow.py -------------------------------------------------------------------------------- /fugue_contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_contrib/__init__.py -------------------------------------------------------------------------------- /fugue_contrib/contrib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_contrib/contrib.py -------------------------------------------------------------------------------- /fugue_contrib/seaborn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_contrib/seaborn/__init__.py -------------------------------------------------------------------------------- /fugue_contrib/viz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_contrib/viz/__init__.py -------------------------------------------------------------------------------- /fugue_contrib/viz/_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_contrib/viz/_ext.py -------------------------------------------------------------------------------- /fugue_dask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_dask/__init__.py -------------------------------------------------------------------------------- /fugue_dask/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_dask/_constants.py -------------------------------------------------------------------------------- /fugue_dask/_dask_sql_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_dask/_dask_sql_wrapper.py -------------------------------------------------------------------------------- /fugue_dask/_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_dask/_io.py -------------------------------------------------------------------------------- /fugue_dask/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_dask/_utils.py -------------------------------------------------------------------------------- /fugue_dask/dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_dask/dataframe.py -------------------------------------------------------------------------------- /fugue_dask/execution_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_dask/execution_engine.py -------------------------------------------------------------------------------- /fugue_dask/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_dask/registry.py -------------------------------------------------------------------------------- /fugue_dask/tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_dask/tester.py -------------------------------------------------------------------------------- /fugue_duckdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_duckdb/__init__.py -------------------------------------------------------------------------------- /fugue_duckdb/_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_duckdb/_io.py -------------------------------------------------------------------------------- /fugue_duckdb/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_duckdb/_utils.py -------------------------------------------------------------------------------- /fugue_duckdb/dask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_duckdb/dask.py -------------------------------------------------------------------------------- /fugue_duckdb/dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_duckdb/dataframe.py -------------------------------------------------------------------------------- /fugue_duckdb/execution_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_duckdb/execution_engine.py -------------------------------------------------------------------------------- /fugue_duckdb/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_duckdb/registry.py -------------------------------------------------------------------------------- /fugue_duckdb/tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_duckdb/tester.py -------------------------------------------------------------------------------- /fugue_ibis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_ibis/__init__.py -------------------------------------------------------------------------------- /fugue_ibis/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_ibis/_compat.py -------------------------------------------------------------------------------- /fugue_ibis/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_ibis/_utils.py -------------------------------------------------------------------------------- /fugue_ibis/dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_ibis/dataframe.py -------------------------------------------------------------------------------- /fugue_ibis/execution_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_ibis/execution_engine.py -------------------------------------------------------------------------------- /fugue_notebook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_notebook/__init__.py -------------------------------------------------------------------------------- /fugue_notebook/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_notebook/env.py -------------------------------------------------------------------------------- /fugue_notebook/nbextension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_notebook/nbextension/README.md -------------------------------------------------------------------------------- /fugue_notebook/nbextension/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fugue_notebook/nbextension/description.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_notebook/nbextension/description.yaml -------------------------------------------------------------------------------- /fugue_notebook/nbextension/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_notebook/nbextension/main.js -------------------------------------------------------------------------------- /fugue_polars/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_polars/__init__.py -------------------------------------------------------------------------------- /fugue_polars/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_polars/_utils.py -------------------------------------------------------------------------------- /fugue_polars/polars_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_polars/polars_dataframe.py -------------------------------------------------------------------------------- /fugue_polars/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_polars/registry.py -------------------------------------------------------------------------------- /fugue_ray/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_ray/__init__.py -------------------------------------------------------------------------------- /fugue_ray/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_ray/_constants.py -------------------------------------------------------------------------------- /fugue_ray/_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fugue_ray/_utils/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_ray/_utils/cluster.py -------------------------------------------------------------------------------- /fugue_ray/_utils/dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_ray/_utils/dataframe.py -------------------------------------------------------------------------------- /fugue_ray/_utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_ray/_utils/io.py -------------------------------------------------------------------------------- /fugue_ray/dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_ray/dataframe.py -------------------------------------------------------------------------------- /fugue_ray/execution_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_ray/execution_engine.py -------------------------------------------------------------------------------- /fugue_ray/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_ray/registry.py -------------------------------------------------------------------------------- /fugue_ray/tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_ray/tester.py -------------------------------------------------------------------------------- /fugue_spark/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_spark/__init__.py -------------------------------------------------------------------------------- /fugue_spark/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_spark/_constants.py -------------------------------------------------------------------------------- /fugue_spark/_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fugue_spark/_utils/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_spark/_utils/convert.py -------------------------------------------------------------------------------- /fugue_spark/_utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_spark/_utils/io.py -------------------------------------------------------------------------------- /fugue_spark/_utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_spark/_utils/misc.py -------------------------------------------------------------------------------- /fugue_spark/_utils/partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_spark/_utils/partition.py -------------------------------------------------------------------------------- /fugue_spark/dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_spark/dataframe.py -------------------------------------------------------------------------------- /fugue_spark/execution_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_spark/execution_engine.py -------------------------------------------------------------------------------- /fugue_spark/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_spark/registry.py -------------------------------------------------------------------------------- /fugue_spark/tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_spark/tester.py -------------------------------------------------------------------------------- /fugue_sql/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_sql/__init__.py -------------------------------------------------------------------------------- /fugue_sql/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_sql/exceptions.py -------------------------------------------------------------------------------- /fugue_test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_test/__init__.py -------------------------------------------------------------------------------- /fugue_test/bag_suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_test/bag_suite.py -------------------------------------------------------------------------------- /fugue_test/builtin_suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_test/builtin_suite.py -------------------------------------------------------------------------------- /fugue_test/dataframe_suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_test/dataframe_suite.py -------------------------------------------------------------------------------- /fugue_test/execution_suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_test/execution_suite.py -------------------------------------------------------------------------------- /fugue_test/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/fugue_test/fixtures.py -------------------------------------------------------------------------------- /fugue_version/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.9.3" 2 | -------------------------------------------------------------------------------- /images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/images/architecture.png -------------------------------------------------------------------------------- /images/extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/images/extensions.png -------------------------------------------------------------------------------- /images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/images/logo.svg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/setupsparkconnect.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/scripts/setupsparkconnect.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | # pylint: disable-all 2 | -------------------------------------------------------------------------------- /tests/fugue/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fugue/bag/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fugue/bag/test_array_bag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/bag/test_array_bag.py -------------------------------------------------------------------------------- /tests/fugue/collections/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fugue/collections/test_partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/collections/test_partition.py -------------------------------------------------------------------------------- /tests/fugue/collections/test_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/collections/test_sql.py -------------------------------------------------------------------------------- /tests/fugue/column/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fugue/column/test_expressions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/column/test_expressions.py -------------------------------------------------------------------------------- /tests/fugue/column/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/column/test_functions.py -------------------------------------------------------------------------------- /tests/fugue/column/test_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/column/test_sql.py -------------------------------------------------------------------------------- /tests/fugue/dataframe/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/fugue/dataframe/test_array_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/dataframe/test_array_dataframe.py -------------------------------------------------------------------------------- /tests/fugue/dataframe/test_arrow_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/dataframe/test_arrow_dataframe.py -------------------------------------------------------------------------------- /tests/fugue/dataframe/test_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/dataframe/test_dataframe.py -------------------------------------------------------------------------------- /tests/fugue/dataframe/test_dataframe_iterable_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/dataframe/test_dataframe_iterable_dataframe.py -------------------------------------------------------------------------------- /tests/fugue/dataframe/test_dataframes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/dataframe/test_dataframes.py -------------------------------------------------------------------------------- /tests/fugue/dataframe/test_function_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/dataframe/test_function_wrapper.py -------------------------------------------------------------------------------- /tests/fugue/dataframe/test_iterable_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/dataframe/test_iterable_dataframe.py -------------------------------------------------------------------------------- /tests/fugue/dataframe/test_pandas_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/dataframe/test_pandas_dataframe.py -------------------------------------------------------------------------------- /tests/fugue/dataframe/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/dataframe/test_utils.py -------------------------------------------------------------------------------- /tests/fugue/execution/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/fugue/execution/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/execution/test_api.py -------------------------------------------------------------------------------- /tests/fugue/execution/test_execution_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/execution/test_execution_engine.py -------------------------------------------------------------------------------- /tests/fugue/execution/test_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/execution/test_factory.py -------------------------------------------------------------------------------- /tests/fugue/execution/test_naive_execution_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/execution/test_naive_execution_engine.py -------------------------------------------------------------------------------- /tests/fugue/extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fugue/extensions/creator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/extensions/creator/__init__.py -------------------------------------------------------------------------------- /tests/fugue/extensions/creator/test_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/extensions/creator/test_convert.py -------------------------------------------------------------------------------- /tests/fugue/extensions/outputter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/extensions/outputter/__init__.py -------------------------------------------------------------------------------- /tests/fugue/extensions/outputter/test_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/extensions/outputter/test_convert.py -------------------------------------------------------------------------------- /tests/fugue/extensions/processor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/extensions/processor/__init__.py -------------------------------------------------------------------------------- /tests/fugue/extensions/processor/test_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/extensions/processor/test_convert.py -------------------------------------------------------------------------------- /tests/fugue/extensions/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/extensions/test_utils.py -------------------------------------------------------------------------------- /tests/fugue/extensions/transformer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fugue/extensions/transformer/test_convert_cotransformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/extensions/transformer/test_convert_cotransformer.py -------------------------------------------------------------------------------- /tests/fugue/extensions/transformer/test_convert_output_cotransformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/extensions/transformer/test_convert_output_cotransformer.py -------------------------------------------------------------------------------- /tests/fugue/extensions/transformer/test_convert_output_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/extensions/transformer/test_convert_output_transformer.py -------------------------------------------------------------------------------- /tests/fugue/extensions/transformer/test_convert_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/extensions/transformer/test_convert_transformer.py -------------------------------------------------------------------------------- /tests/fugue/rpc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fugue/rpc/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/rpc/test_base.py -------------------------------------------------------------------------------- /tests/fugue/rpc/test_flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/rpc/test_flask.py -------------------------------------------------------------------------------- /tests/fugue/rpc/test_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/rpc/test_func.py -------------------------------------------------------------------------------- /tests/fugue/sql/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fugue/sql/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/sql/test_utils.py -------------------------------------------------------------------------------- /tests/fugue/sql/test_visitors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/sql/test_visitors.py -------------------------------------------------------------------------------- /tests/fugue/sql/test_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/sql/test_workflow.py -------------------------------------------------------------------------------- /tests/fugue/sql/test_workflow_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/sql/test_workflow_parse.py -------------------------------------------------------------------------------- /tests/fugue/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fugue/test/test_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/test/test_plugins.py -------------------------------------------------------------------------------- /tests/fugue/test_interfaceless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/test_interfaceless.py -------------------------------------------------------------------------------- /tests/fugue/utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/fugue/utils/test_interfaceless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/utils/test_interfaceless.py -------------------------------------------------------------------------------- /tests/fugue/utils/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/utils/test_io.py -------------------------------------------------------------------------------- /tests/fugue/utils/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/utils/test_misc.py -------------------------------------------------------------------------------- /tests/fugue/workflow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fugue/workflow/test_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/workflow/test_module.py -------------------------------------------------------------------------------- /tests/fugue/workflow/test_runtime_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/workflow/test_runtime_exception.py -------------------------------------------------------------------------------- /tests/fugue/workflow/test_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/workflow/test_workflow.py -------------------------------------------------------------------------------- /tests/fugue/workflow/test_workflow_determinism.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/workflow/test_workflow_determinism.py -------------------------------------------------------------------------------- /tests/fugue/workflow/test_workflow_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue/workflow/test_workflow_parallel.py -------------------------------------------------------------------------------- /tests/fugue_dask/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fugue_dask/test_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_dask/test_dataframe.py -------------------------------------------------------------------------------- /tests/fugue_dask/test_execution_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_dask/test_execution_engine.py -------------------------------------------------------------------------------- /tests/fugue_dask/test_importless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_dask/test_importless.py -------------------------------------------------------------------------------- /tests/fugue_dask/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_dask/test_io.py -------------------------------------------------------------------------------- /tests/fugue_dask/test_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_dask/test_sql.py -------------------------------------------------------------------------------- /tests/fugue_dask/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_dask/test_utils.py -------------------------------------------------------------------------------- /tests/fugue_duckdb/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fugue_duckdb/test_dask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_duckdb/test_dask.py -------------------------------------------------------------------------------- /tests/fugue_duckdb/test_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_duckdb/test_dataframe.py -------------------------------------------------------------------------------- /tests/fugue_duckdb/test_execution_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_duckdb/test_execution_engine.py -------------------------------------------------------------------------------- /tests/fugue_duckdb/test_importless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_duckdb/test_importless.py -------------------------------------------------------------------------------- /tests/fugue_duckdb/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_duckdb/test_utils.py -------------------------------------------------------------------------------- /tests/fugue_ibis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fugue_ibis/mock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fugue_ibis/mock/dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_ibis/mock/dataframe.py -------------------------------------------------------------------------------- /tests/fugue_ibis/mock/execution_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_ibis/mock/execution_engine.py -------------------------------------------------------------------------------- /tests/fugue_ibis/mock/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_ibis/mock/registry.py -------------------------------------------------------------------------------- /tests/fugue_ibis/mock/tester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_ibis/mock/tester.py -------------------------------------------------------------------------------- /tests/fugue_ibis/test_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_ibis/test_dataframe.py -------------------------------------------------------------------------------- /tests/fugue_ibis/test_execution_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_ibis/test_execution_engine.py -------------------------------------------------------------------------------- /tests/fugue_ibis/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_ibis/test_utils.py -------------------------------------------------------------------------------- /tests/fugue_notebook/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fugue_notebook/test_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_notebook/test_notebook.ipynb -------------------------------------------------------------------------------- /tests/fugue_polars/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fugue_polars/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_polars/test_api.py -------------------------------------------------------------------------------- /tests/fugue_polars/test_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_polars/test_dataframe.py -------------------------------------------------------------------------------- /tests/fugue_polars/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_polars/test_transform.py -------------------------------------------------------------------------------- /tests/fugue_ray/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fugue_ray/test_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_ray/test_dataframe.py -------------------------------------------------------------------------------- /tests/fugue_ray/test_execution_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_ray/test_execution_engine.py -------------------------------------------------------------------------------- /tests/fugue_ray/test_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_ray/test_registry.py -------------------------------------------------------------------------------- /tests/fugue_ray/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_ray/test_utils.py -------------------------------------------------------------------------------- /tests/fugue_spark/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fugue_spark/test_dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_spark/test_dataframe.py -------------------------------------------------------------------------------- /tests/fugue_spark/test_execution_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_spark/test_execution_engine.py -------------------------------------------------------------------------------- /tests/fugue_spark/test_importless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_spark/test_importless.py -------------------------------------------------------------------------------- /tests/fugue_spark/test_spark_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_spark/test_spark_connect.py -------------------------------------------------------------------------------- /tests/fugue_spark/test_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_spark/test_sql.py -------------------------------------------------------------------------------- /tests/fugue_spark/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fugue_spark/utils/test_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_spark/utils/test_convert.py -------------------------------------------------------------------------------- /tests/fugue_spark/utils/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_spark/utils/test_io.py -------------------------------------------------------------------------------- /tests/fugue_spark/utils/test_partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fugue-project/fugue/HEAD/tests/fugue_spark/utils/test_partition.py --------------------------------------------------------------------------------