-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
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
Question regarding compatibility #3
Comments
Hi, Thank you! The modules you are referring to in the list list are still uncovered and we are happy to accept pull requests to support them. Cheers, |
@qunaibit - thank you, this will be very useful as it supports the need to migrate Python to things like Apache Spark. I am considering using this for a project https://github.com/SemanticBeeng/The_Termolator which I am looking to migrate to Spark. Could Zippy be used to as a stepping stone by running a mix of ported (Java/Scala) code and Python as is. This could be a good strategy given the lack of familiarity with the code base. I could port incrementally. Since it is all on the JVM this should be ... workable but the interpreter must be tread safe. Is the Zippy interpreter thread safe (no thread state/affinity, etc)? Thoughts in general about this idea please? |
Hi, Currently, ZipPy doesn't support a mixture of Java and Python. Best, |
Understood it does not support the mix.
Which would suggest it is like Jep. Once all it is JVM bytecode (from Java or Python) they overall program should run well together, no? Kindly advise. |
In this case, it should be fine for multiple Threads.
The only way, I can think of at the moment, is that you build your own internal library in Java and call it from your Python program. Best, |
@qunaibit how is the Python 3 implemented; heard you are using Jython but that does not support Python 3 does it? https://bitbucket.org/ssllab/zippy - "ZipPy is a fast and lightweight Python 3 implementation " More specifically, does zippy support Thanks in advance. |
We use Jython primarily as a parser, so some Python 3 features are not available yet. Once Jython 3 reaches a beta stage we will replace the current Jython jar and support the other Python 3 features.
Typing isn't supported, yet, in ZipPy Best |
Hi guys,
First of all, great work on what you guys are trying to accomplish!!
My question comes regarding this issue on Bitbucket: https://bitbucket.org/ssllab/zippy/issues/4/things-that-are-missing-in-zippy
Are these modules still not supported under zippy?
Regards,
Ash
The text was updated successfully, but these errors were encountered: