Upgrade from Eikon -> Workspace. Learn about programming differences.

For a deeper look into our Eikon Data API, look into:

Overview |  Quickstart |  Documentation |  Downloads |  Tutorials |  Articles

question

Upvotes
Accepted
1 3 3 3

Getting error while import Eikon API

RuntimeError: There is no current event loop in thread 'ScriptRunner.scriptThread'.

Traceback:

File "/Users/maxwilliamsboko/opt/anaconda3/lib/python3.8/site-packages/streamlit/script_runner.py", line 337, in _run_script
    exec(code, module.__dict__)File "/Users/maxwilliamsboko/Desktop/project.py", line 8, in <module>
    import eikon as ekFile "/Users/maxwilliamsboko/opt/anaconda3/lib/python3.8/site-packages/eikon/__init__.py", line 12, in <module>
    from .Profile import *File "/Users/maxwilliamsboko/opt/anaconda3/lib/python3.8/site-packages/eikon/Profile.py", line 17, in <module>
    from .streaming_session import DesktopSessionFile "/Users/maxwilliamsboko/opt/anaconda3/lib/python3.8/site-packages/eikon/streaming_session/__init__.py", line 3, in <module>
    from .session import *File "/Users/maxwilliamsboko/opt/anaconda3/lib/python3.8/site-packages/eikon/streaming_session/session.py", line 21, in <module>
    nest_asyncio.apply()File "/Users/maxwilliamsboko/opt/anaconda3/lib/python3.8/site-packages/nest_asyncio.py", line 12, in apply
    loop = loop or asyncio.get_event_loop()File "/Users/maxwilliamsboko/opt/anaconda3/lib/python3.8/asyncio/events.py", line 639, in get_event_loop
    raise RuntimeError('There is no current event loop in thread %r.'
eikoneikon-data-apipythonrefinitiv-dataplatform-eikonworkspaceworkspace-data-api
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Hello @maxwilliams.boko

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query?


If so please can you click the 'Accept' text next to the appropriate reply? This will guide all community members who have a similar question.

Thanks,


AHS

Upvotes
Accepted
5.7k 21 2 6

Hi @maxwilliams.boko,

Would you be so kind as to (i) let us know which version of Python you are using, (ii) which IDE you are running your code in, (iii) what OS you are running it on (Windows? MacOS? ...) and also (iv) share your code with us - what code did you run to come up with this error?

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvotes
884 4 2 8

As I can see from the error message, you are using Anaconda and this error is coming since Eikon API is making use of nest_asyncio.py file. asyncio only generates an event loop for the main thread but in your case asyncio.get_event_loop() is running in some other thread instead of main thread.
So a quick fix for this is to locate apply function in nest_asyncio.py file which is available at anaconda site packages folder:

def apply(loop=None):
    """Patch asyncio to make its event loop reentrant."""    
    loop = asyncio.get_event_loop()
    if not isinstance(loop, asyncio.BaseEventLoop):
        raise ValueError('Can\'t patch loop of type %s' % type(loop))
    if getattr(loop, '_nest_patched', None):
        # already patched        return    _patch_asyncio()
    _patch_loop(loop)
    _patch_task()
    _patch_tornado()

and replace

loop = asyncio.get_event_loop()

with

loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)


This will start a second event loop to run and will fix this error.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Upvote
38 1 0 2

I had the same problem and didn't manage to solve it with the proposed solution. I therefore deleted the lines of frontendcomm.py :

 else:  
     #This is needed for ipykernel 6+
     asyncio.run(handler(out_stream, ident, msg))

and it works well !

 
              
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.