We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
serve_kernel_port_as_iframe
The Colab folks have upstreamed our iframe creation logic with a helper modeled after ours:
https://github.com/googlecolab/colabtools/blob/f31c2c03993b733b8f5ae7c7a451077f72ca6882/google/colab/output/_util.py#L66-L78
It’s available as:
from google.colab import output output.serve_kernel_port_as_iframe(port)
…and we already only render to Colab if google.colab is present. May as well use it, simplifying our code a bit?
google.colab
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The Colab folks have upstreamed our iframe creation logic with a helper
modeled after ours:
https://github.com/googlecolab/colabtools/blob/f31c2c03993b733b8f5ae7c7a451077f72ca6882/google/colab/output/_util.py#L66-L78
It’s available as:
…and we already only render to Colab if
google.colab
is present.May as well use it, simplifying our code a bit?
The text was updated successfully, but these errors were encountered: