What URL allows me to use `intersphinx` to link to bokeh docs?

intersphinx is a Sphinx module that allows automatic links from sphinx documentation to the sphinx documentation for other projects. Bokeh itself makes use of that in its own docs to link from bokeh to, e.g., the Python docs.

I have a project where I would like to link to bokeh. What is the URL where bokeh has it’s “objects.inv” file?

intersphinx_mapping = {'bokeh': ('https://docs.bokeh.org/en/latest/docs/reference/', None)}

or maybe

intersphinx_mapping = {'bokeh': ('https://docs.bokeh.org/en/latest/', None)}

or something else.

The files are at

https://docs.bokeh.org/en/<version>/objects.inv

Where “<version>” can also include “latest”. Are you saying that you tried this and it did not work?

Thanks. No, I did not try this. I thought asking is easier than guessing (also, by asking it’s now in a place where google can find it) and avoids the risk that I pick up, e.g. a location that does a currently unmaintained version or anything like that.

@hamogu If you’d like to make a PR to add a new “Intersphinx” subsection at the bottom of this page with this information for other users, we’d be happy to accept it: