8 ms·
I remember there being talk of eventually being able to call Julia from within Python. I've also been quite happy using Numba as an alternative to Cython for so
by synparb 13y ago
I remember there being talk of eventually being able to call Julia from within Python. I've also been quite happy using Numba as an alternative to Cython for some things when I need speed. It's a lot more light-weight with less boilerplate, although still a little rough around the edges.
- dagw 13y agoI don't know about calling Julia from within Python, but you can call python from within Julia. This makes it very easy to wrap and use python libraries for things which Julia doesn't have good support for yet.
- bayesianhorse 13y agoWould be awkward to run django from inside julia though...
- jamesjporter 13y agoThis already exists as a prototype as part of IJulia, see Leah Hanson's awesome blog post about it here: http://blog.leahhanson.us/julia-calling-python-calling-julia.html http://blog.leahhanson.us/julia-calling-python-calling-julia... The collaboration between the scientific Python and Julia communities in recent months has been awesome to watch.