├── .flake8 ├── .gitattributes ├── .github └── workflows │ ├── documentation.yml │ ├── pre-commit-check.yml │ ├── python-package.yml │ └── python-publish.yml ├── .gitignore ├── .isort.cfg ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── Release_Notes.md ├── Tests ├── Recreate Pandas.DataFrame.plot Examples.ipynb ├── requirements_test.txt ├── test_GeoPandasBokeh.py ├── test_PandasBokeh.py ├── test_PySpark.py └── test_utils.py ├── description.md ├── docs ├── Documentation.ipynb ├── Images │ ├── Alternative_Layout.png │ ├── ApplevsGoogle_1.gif │ ├── ApplevsGoogle_2.gif │ ├── ApplevsGoogle_3.png │ ├── Barplot.gif │ ├── Barplot2.png │ ├── Barplot3.png │ ├── Histogram2.png │ ├── Histograms_all.gif │ ├── Mapplot.gif │ ├── Multiple_GeoLayers.gif │ ├── Number_format.gif │ ├── Pandas-Bokeh-Logo.png │ ├── Pandas-Bokeh-Logo.svg │ ├── Pointmap.gif │ ├── Pointplot.gif │ ├── Release 0.1.png │ ├── Scatterplot.gif │ ├── Scatterplot2.png │ ├── Scientific_axes.png │ ├── Startimage.gif │ ├── Startimage.png │ ├── US_States_1.gif │ ├── US_States_2.png │ ├── US_States_3.gif │ ├── US_States_4.gif │ ├── areaplot.png │ ├── areaplot2.gif │ ├── embedded_HTML.png │ ├── geoplot_PrintfTickFormatter.png │ ├── geoplot_string_tickformatter.png │ ├── pieplot.gif │ ├── pieplot2.png │ ├── rangetool.gif │ ├── scaled_plot.png │ └── stepplot.png ├── Testdata │ ├── Bundestagswahl │ │ └── Bundestagswahl.csv │ ├── energy │ │ └── energy.csv │ ├── epsg │ ├── hole_shapes │ │ └── hole_shapes.geojson │ ├── iris │ │ └── iris.csv │ ├── populated places │ │ ├── ne_10m_populated_places_simple.VERSION.txt │ │ ├── ne_10m_populated_places_simple_bigcities.geojson │ │ └── populated_places.csv │ └── states │ │ ├── states.geojson │ │ └── states_population_attribution.txt ├── ToDo.md ├── index.html └── sphinx │ ├── Makefile │ ├── build_docs.sh │ ├── requirements_docs.txt │ └── source │ ├── _static │ └── Images │ ├── conf.py │ └── utils │ ├── Testdata │ ├── create_sphinx_index_from_readme.py │ └── make_plots.py ├── pandas_bokeh ├── .vscode │ ├── .ropeproject │ │ ├── config.py │ │ └── objectdb │ └── settings.json ├── __init__.py ├── base.py ├── geoplot.py ├── plot.py └── utils.py ├── poetry.lock ├── pyproject.toml └── scripts ├── conda_build.sh ├── create_github_pages.sh ├── pandas-bokeh └── meta_base.yaml └── upload_to_pypi.sh /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/.github/workflows/documentation.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/.github/workflows/pre-commit-check.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/README.md -------------------------------------------------------------------------------- /Release_Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/Release_Notes.md -------------------------------------------------------------------------------- /Tests/Recreate Pandas.DataFrame.plot Examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/Tests/Recreate Pandas.DataFrame.plot Examples.ipynb -------------------------------------------------------------------------------- /Tests/requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/Tests/requirements_test.txt -------------------------------------------------------------------------------- /Tests/test_GeoPandasBokeh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/Tests/test_GeoPandasBokeh.py -------------------------------------------------------------------------------- /Tests/test_PandasBokeh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/Tests/test_PandasBokeh.py -------------------------------------------------------------------------------- /Tests/test_PySpark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/Tests/test_PySpark.py -------------------------------------------------------------------------------- /Tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/Tests/test_utils.py -------------------------------------------------------------------------------- /description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/description.md -------------------------------------------------------------------------------- /docs/Documentation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Documentation.ipynb -------------------------------------------------------------------------------- /docs/Images/Alternative_Layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/Alternative_Layout.png -------------------------------------------------------------------------------- /docs/Images/ApplevsGoogle_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/ApplevsGoogle_1.gif -------------------------------------------------------------------------------- /docs/Images/ApplevsGoogle_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/ApplevsGoogle_2.gif -------------------------------------------------------------------------------- /docs/Images/ApplevsGoogle_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/ApplevsGoogle_3.png -------------------------------------------------------------------------------- /docs/Images/Barplot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/Barplot.gif -------------------------------------------------------------------------------- /docs/Images/Barplot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/Barplot2.png -------------------------------------------------------------------------------- /docs/Images/Barplot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/Barplot3.png -------------------------------------------------------------------------------- /docs/Images/Histogram2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/Histogram2.png -------------------------------------------------------------------------------- /docs/Images/Histograms_all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/Histograms_all.gif -------------------------------------------------------------------------------- /docs/Images/Mapplot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/Mapplot.gif -------------------------------------------------------------------------------- /docs/Images/Multiple_GeoLayers.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/Multiple_GeoLayers.gif -------------------------------------------------------------------------------- /docs/Images/Number_format.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/Number_format.gif -------------------------------------------------------------------------------- /docs/Images/Pandas-Bokeh-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/Pandas-Bokeh-Logo.png -------------------------------------------------------------------------------- /docs/Images/Pandas-Bokeh-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/Pandas-Bokeh-Logo.svg -------------------------------------------------------------------------------- /docs/Images/Pointmap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/Pointmap.gif -------------------------------------------------------------------------------- /docs/Images/Pointplot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/Pointplot.gif -------------------------------------------------------------------------------- /docs/Images/Release 0.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/Release 0.1.png -------------------------------------------------------------------------------- /docs/Images/Scatterplot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/Scatterplot.gif -------------------------------------------------------------------------------- /docs/Images/Scatterplot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/Scatterplot2.png -------------------------------------------------------------------------------- /docs/Images/Scientific_axes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/Scientific_axes.png -------------------------------------------------------------------------------- /docs/Images/Startimage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/Startimage.gif -------------------------------------------------------------------------------- /docs/Images/Startimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/Startimage.png -------------------------------------------------------------------------------- /docs/Images/US_States_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/US_States_1.gif -------------------------------------------------------------------------------- /docs/Images/US_States_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/US_States_2.png -------------------------------------------------------------------------------- /docs/Images/US_States_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/US_States_3.gif -------------------------------------------------------------------------------- /docs/Images/US_States_4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/US_States_4.gif -------------------------------------------------------------------------------- /docs/Images/areaplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/areaplot.png -------------------------------------------------------------------------------- /docs/Images/areaplot2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/areaplot2.gif -------------------------------------------------------------------------------- /docs/Images/embedded_HTML.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/embedded_HTML.png -------------------------------------------------------------------------------- /docs/Images/geoplot_PrintfTickFormatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/geoplot_PrintfTickFormatter.png -------------------------------------------------------------------------------- /docs/Images/geoplot_string_tickformatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/geoplot_string_tickformatter.png -------------------------------------------------------------------------------- /docs/Images/pieplot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/pieplot.gif -------------------------------------------------------------------------------- /docs/Images/pieplot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/pieplot2.png -------------------------------------------------------------------------------- /docs/Images/rangetool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/rangetool.gif -------------------------------------------------------------------------------- /docs/Images/scaled_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/scaled_plot.png -------------------------------------------------------------------------------- /docs/Images/stepplot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Images/stepplot.png -------------------------------------------------------------------------------- /docs/Testdata/Bundestagswahl/Bundestagswahl.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Testdata/Bundestagswahl/Bundestagswahl.csv -------------------------------------------------------------------------------- /docs/Testdata/energy/energy.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Testdata/energy/energy.csv -------------------------------------------------------------------------------- /docs/Testdata/epsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Testdata/epsg -------------------------------------------------------------------------------- /docs/Testdata/hole_shapes/hole_shapes.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Testdata/hole_shapes/hole_shapes.geojson -------------------------------------------------------------------------------- /docs/Testdata/iris/iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Testdata/iris/iris.csv -------------------------------------------------------------------------------- /docs/Testdata/populated places/ne_10m_populated_places_simple.VERSION.txt: -------------------------------------------------------------------------------- 1 | 4.1.0 2 | -------------------------------------------------------------------------------- /docs/Testdata/populated places/ne_10m_populated_places_simple_bigcities.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Testdata/populated places/ne_10m_populated_places_simple_bigcities.geojson -------------------------------------------------------------------------------- /docs/Testdata/populated places/populated_places.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Testdata/populated places/populated_places.csv -------------------------------------------------------------------------------- /docs/Testdata/states/states.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Testdata/states/states.geojson -------------------------------------------------------------------------------- /docs/Testdata/states/states_population_attribution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/Testdata/states/states_population_attribution.txt -------------------------------------------------------------------------------- /docs/ToDo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/ToDo.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/sphinx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/sphinx/Makefile -------------------------------------------------------------------------------- /docs/sphinx/build_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/sphinx/build_docs.sh -------------------------------------------------------------------------------- /docs/sphinx/requirements_docs.txt: -------------------------------------------------------------------------------- 1 | click 2 | myst-parser 3 | sphinx-material 4 | -------------------------------------------------------------------------------- /docs/sphinx/source/_static/Images: -------------------------------------------------------------------------------- 1 | ../../../../docs/Images/ -------------------------------------------------------------------------------- /docs/sphinx/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/sphinx/source/conf.py -------------------------------------------------------------------------------- /docs/sphinx/source/utils/Testdata: -------------------------------------------------------------------------------- 1 | ../../../Testdata/ -------------------------------------------------------------------------------- /docs/sphinx/source/utils/create_sphinx_index_from_readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/sphinx/source/utils/create_sphinx_index_from_readme.py -------------------------------------------------------------------------------- /docs/sphinx/source/utils/make_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/docs/sphinx/source/utils/make_plots.py -------------------------------------------------------------------------------- /pandas_bokeh/.vscode/.ropeproject/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/pandas_bokeh/.vscode/.ropeproject/config.py -------------------------------------------------------------------------------- /pandas_bokeh/.vscode/.ropeproject/objectdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/pandas_bokeh/.vscode/.ropeproject/objectdb -------------------------------------------------------------------------------- /pandas_bokeh/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/pandas_bokeh/.vscode/settings.json -------------------------------------------------------------------------------- /pandas_bokeh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/pandas_bokeh/__init__.py -------------------------------------------------------------------------------- /pandas_bokeh/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/pandas_bokeh/base.py -------------------------------------------------------------------------------- /pandas_bokeh/geoplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/pandas_bokeh/geoplot.py -------------------------------------------------------------------------------- /pandas_bokeh/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/pandas_bokeh/plot.py -------------------------------------------------------------------------------- /pandas_bokeh/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/pandas_bokeh/utils.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/conda_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/scripts/conda_build.sh -------------------------------------------------------------------------------- /scripts/create_github_pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/scripts/create_github_pages.sh -------------------------------------------------------------------------------- /scripts/pandas-bokeh/meta_base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/scripts/pandas-bokeh/meta_base.yaml -------------------------------------------------------------------------------- /scripts/upload_to_pypi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PatrikHlobil/Pandas-Bokeh/HEAD/scripts/upload_to_pypi.sh --------------------------------------------------------------------------------