The following example should work, but it requires the selenium
package (as I understand, under the hood chartify
builds an interactive chart using the bokeh
package and takes a screenshot with selenium
)
import chartify
chartify.examples.plot_scatter()
The code above doesn't work because I can't configure a driver for Selenium, which is normally done similar to this:
from selenium import webdriver
driver = webdriver.Chrome(executable_path=(my_path + '/chromedriver)')
How can I pass this driver
object to chartify
?