12
votes
6answers
1k views
Groovy advantages over Jython or Jruby?
Why would I choose to use Groovy when I could use Jython or Jruby? Does the language provide any inherent advantages to make up for the fact that Jython and Jruby skills are applic …
10
votes
3answers
430 views
Migrating from CPython to Jython
I'm considering moving my code (around 30K LOC) from CPython to Jython, so that I could have better integration with my java code.
Is there a checklist or a guide I should look a …
9
votes
6answers
482 views
What are some strategies to write python code that works in CPython, Jython and IronPython
Having tries to target two of these environments at the same time I can safely say the if you have to use a database etc. you end up having to write unique code for that environmen …
8
votes
4answers
392 views
Are there problems developing Django on Jython?
The background
I'm building a fair-sized web application with a friend in my own time, and we've decided to go with the Django framework on Python. Django provides us with a lo …
8
votes
2answers
916 views
Modern, high performance bloom filter in Python?
I'm looking for a production quality bloom filter implementation in Python to handle fairly large numbers of items (say 100M to 1B items with 0.01% false positive rate).
Pybloom …
7
votes
4answers
227 views
Intercept slice operations in Python
I want to imitate a normal python list, except whenever elements are added or removed via slicing, I want to 'save' the list. Is this possible? This was my attempt but it will neve …
7
votes
5answers
679 views
fast-ish python/jython IPC?
All I want to do is make some RPC calls over sockets. I have a server that does backendish stuff running jython 2.5. I need to make some calls from a frontend server running Django …
6
votes
14answers
1k views
Why use Jython when you could just use Java?
The standard answer is that it's useful when you only need to write a few lines of code ...
I have both languages integrated inside of Eclipse. Because Eclipse handles the compili …
5
votes
3answers
457 views
Distributing my python scripts as jars with jython?
Hi all,
I have been a python programmer for almost 2 years and I am used to writing small scripts to automate some repetitive tasks I had to do at office. Now, apparently my collea …
5
votes
2answers
141 views
Randomness in Jython
When using (pseudo) random numbers in Jython, would it be more efficient to use the Python random module or Java's random class?
5
votes
7answers
341 views
Using Python from within Java [closed]
Possible Duplicate:
Java Python Integration
I have a large existing codebase written in 100% Java, but I would like to use Python for some new sections of it. I need to do …
5
votes
9answers
667 views
Why do so many insist on dragging the JVM into new applications?
For example, I'm running into developers and architects who are scared to death of Rails apps, but love the idea of writing new Grails apps.
From what I've seen, there is a LOT o …
5
votes
3answers
489 views
Is it possible to use SWT from Jython?
The SWT-Gui looks very nice.
Is there an easy way to use it in Jython ?
5
votes
2answers
892 views
Is there a good NumPy clone for Jython?
I'm a relatively new convert to Python. I've written some code to grab/graph data from various sources to automate some weekly reports and forecasts. I've been intrigued by the J …
5
votes
5answers
2k views
Automated Python to Java translation
Is there a tool out there that can automatically convert Python to Java?
Can Jython do this?
