Hey Community
I wrote a module in Julia and want to use it in Python. The module gets data from a TCP connection and puts it in a channel. The user of this module can than take one element as soon as it is ready. Now I want to use this module in Python. I think I will need the following.
- load module
- get channel from init function of this module
-
for el in channel
in python
How would I do these steps in Python?