Coder Social home page Coder Social logo

Comments (2)

kafonek avatar kafonek commented on July 18, 2024

Hi @theSuiGenerisAakash, I'm afraid I don't have a good answer for you. What's happening is that func() is getting executed and returns a Javascript object that evaluates as True if you bool() it. That gets you out of the %block command immediately.

When the Python kernel receives the code and executes it, it's actually sending another message asynchronously back to the front end to execute the javascript (setting notebook_name). When the front-end receives that, it sends a execute_request message to the Python kernel (again asynchronously) to eval that Python code (notebook_name = 'Untitled.ipynb' or whatever your name is).

I believe if you keep fiddling, you'll get to something like this:

### cell 1
import ipython_blocking
import IPython
from IPython.core.magics.display import Javascript
Javascript("IPython.notebook.kernel.execute(`notebook_name = '${IPython.notebook.notebook_name}'`)")

### cell 2
def block():
    try:
        return notebook_name
    except NameError:
        pass

### cell 3
%block block

### cell 4
print(notebook_name)

If you run those cells manually with a second or so pause in between, then it will work and notebook_name is set. However if you cell -> run all it will block forever. Ultimately ipython_blocking is only good for blocking and capturing/replaying execute_request messages while watching comm_msg (widget changes) in order to break out of the context. In the example above, the execute_request notebook_name = ... message that's eventually getting triggered asynchronously by the first cell gets queued up behind cell 3 and is captured instead of executed, so you'll never break out of the context.

I'm afraid you'll have to look around for other options to get your notebook name within the Notebook. Thanks.

from ipython_blocking.

theSuiGenerisAakash avatar theSuiGenerisAakash commented on July 18, 2024

This is as I had thought, thanks for the detailed explanation. Please let me know if I should close the issue.

from ipython_blocking.

Related Issues (13)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    šŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. šŸ“ŠšŸ“ˆšŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ā¤ļø Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.