├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── run_tests.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── docs │ ├── index.md │ ├── troubleshooting.md │ └── user_guide.md ├── examples_mac_linux.ipynb ├── examples_windows.ipynb ├── mkdocs.yml ├── progress_apply.gif ├── progress_parallel_apply.gif └── standard_vs_parallel_4_cores.png ├── pandarallel ├── __init__.py ├── core.py ├── data_types │ ├── __init__.py │ ├── dataframe.py │ ├── dataframe_groupby.py │ ├── expanding_groupby.py │ ├── generic.py │ ├── rolling_groupby.py │ ├── series.py │ └── series_rolling.py ├── progress_bars.py └── utils.py ├── setup.cfg ├── setup.py └── tests └── test_pandarallel.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/run_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/.github/workflows/run_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include LICENSE 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/README.md -------------------------------------------------------------------------------- /docs/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/docs/docs/index.md -------------------------------------------------------------------------------- /docs/docs/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/docs/docs/troubleshooting.md -------------------------------------------------------------------------------- /docs/docs/user_guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/docs/docs/user_guide.md -------------------------------------------------------------------------------- /docs/examples_mac_linux.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/docs/examples_mac_linux.ipynb -------------------------------------------------------------------------------- /docs/examples_windows.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/docs/examples_windows.ipynb -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /docs/progress_apply.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/docs/progress_apply.gif -------------------------------------------------------------------------------- /docs/progress_parallel_apply.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/docs/progress_parallel_apply.gif -------------------------------------------------------------------------------- /docs/standard_vs_parallel_4_cores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/docs/standard_vs_parallel_4_cores.png -------------------------------------------------------------------------------- /pandarallel/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import pandarallel 2 | 3 | __version__ = "1.6.5" 4 | -------------------------------------------------------------------------------- /pandarallel/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/pandarallel/core.py -------------------------------------------------------------------------------- /pandarallel/data_types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/pandarallel/data_types/__init__.py -------------------------------------------------------------------------------- /pandarallel/data_types/dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/pandarallel/data_types/dataframe.py -------------------------------------------------------------------------------- /pandarallel/data_types/dataframe_groupby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/pandarallel/data_types/dataframe_groupby.py -------------------------------------------------------------------------------- /pandarallel/data_types/expanding_groupby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/pandarallel/data_types/expanding_groupby.py -------------------------------------------------------------------------------- /pandarallel/data_types/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/pandarallel/data_types/generic.py -------------------------------------------------------------------------------- /pandarallel/data_types/rolling_groupby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/pandarallel/data_types/rolling_groupby.py -------------------------------------------------------------------------------- /pandarallel/data_types/series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/pandarallel/data_types/series.py -------------------------------------------------------------------------------- /pandarallel/data_types/series_rolling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/pandarallel/data_types/series_rolling.py -------------------------------------------------------------------------------- /pandarallel/progress_bars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/pandarallel/progress_bars.py -------------------------------------------------------------------------------- /pandarallel/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/pandarallel/utils.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_pandarallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nalepae/pandarallel/HEAD/tests/test_pandarallel.py --------------------------------------------------------------------------------