8000 Add Kaleido image export support by jonmmease · Pull Request #2613 · plotly/plotly.py · GitHub
[go: up one dir, main page]

Skip to content

Add Kaleido image export support #2613

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 31 commits into from
Jul 14, 2020
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
1c18fe4
Add kaleido image export option behind the kaleido_export future flag
jonmmease Jul 3, 2020
7467329
Add CHANGELOG entry
jonmmease Jul 3, 2020
b546fcc
Add eps/emf formats
jonmmease Jul 7, 2020
7f65f5f
Replace future flag with engine kwarg
jonmmease Jul 7, 2020
556ef96
emf only available with kaleido
jonmmease Jul 7, 2020
ed71d6a
import kaleido submodule when plotly.io is imported
jonmmease Jul 8, 2020
da4cb83
Update Image renderers with engine parameter
jonmmease Jul 8, 2020
3e1cbd4
Added kaleido engine tests
jonmmease Jul 8, 2020
299165d
Merge remote-tracking branch 'origin/master' into kaleido
jonmmease Jul 8, 2020
411ffb4
Python 2.7 mock compatibility
jonmmease Jul 8, 2020
de44623
Python 2.7 mock compatibility
jonmmease Jul 8, 2020
c5f4e48
Update CHANGELOG.md
jonmmease Jul 8, 2020
4c5fe76
Add kaleido test that actually calls Kaleido and checks that the
jonmmease Jul 8, 2020
011ec72
Remove broken EMF format as option
jonmmease Jul 8, 2020
b5fc3db
Merge remote-tracking branch 'origin/master' into kaleido
jonmmease Jul 8, 2020
f8bff56
Remove broken EMF format as option
jonmmease Jul 8, 2020
827af91
Update image export documentation to recommend and describe Kaleido
jonmmease Jul 9, 2020
ef6e68d
Add engine docstring to figure image export methods
jonmmease Jul 9, 2020
fc7d856
Change kaleido conda channel to plotly since it most likely won't be …
jonmmease Jul 10, 2020
aee0e0d
Conda package renamed from kaleido -> python-kaleido
jonmmease Jul 12, 2020
32f6e7f
Merge remote-tracking branch 'origin/master' into kaleido
jonmmease Jul 13, 2020
00987c0
in README: indicate that Keleido is new and improved and orca is legacy
jonmmease Jul 14, 2020
a25f5b2
Add Kaleido note to orca-management section
jonmmease Jul 14, 2020
a033df0
JPEG typo
jonmmease Jul 14, 2020
d1fc9a8
Merge "Install Dependency" sections and better explain that Kaleido i…
jonmmease Jul 14, 2020
2bdcfe2
Replace Orca with plotly.py when discussing supported image export fo…
jonmmease Jul 14, 2020
70c11ac
varying type
jonmmease Jul 14, 2020
e350025
factor typo [ci skip]
jonmmease Jul 14, 2020
967b728
Update CHANGELOG.md
jonmmease Jul 14, 2020
81a0bc7
Update doc/python/static-image-export.md
jonmmease Jul 14, 2020
74c4274
Update doc/python/orca-management.md
jonmmease Jul 14, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update CHANGELOG.md
Co-authored-by: Nicolas Kruchten <nicolas@plot.ly>
  • Loading branch information
jonmmease and nicolaskruchten authored Jul 14, 2020
commit 967b728a6dfdd40ec9daab2b0f97252fbcaaffcf
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).

### Added

- Added image export support using Kaleido. The image export backend can be configured using the new `engine` argument to `plotly.io.to_image` and `plotly.io.write_image`. The `engine` argument may be set to `"kaleido"`, `"orca"`, or `"auto"`. The default is `engine="auto"`, in which case the Kaleido backend is enabled if the `kaleido` package from PyPI is installed, otherwise Orca is used. ([#2613](https://github.com/plotly/plotly.py/pull/2613)).
- Added image export support using [Kaleido](https://github.com/plotly/Kaleido). The image export backend can be configured using the new `engine` argument to `plotly.io.to_image` and `plotly.io.write_image`. The `engine` argument may be set to `"kaleido"`, `"orca"`, or `"auto"`. The default is `engine="auto"`, in which case the Kaleido backend is enabled if the `kaleido` package from PyPI is installed, otherwise Orca is used. ([#2613](https://github.com/plotly/plotly.py/pull/2613)).
- `px.NO_COLOR` constant to override wide-form color assignment in Plotly Express ([#2614](https://github.com/plotly/plotly.py/pull/2614))
- `facet_row_spacing` and `facet_col_spacing` added to Plotly Express cartesian 2d functions ([#2614](https://github.com/plotly/plotly.py/pull/2614))

Expand Down
0