Tagged Questions

Jython is an open-source implementation of the Python programming language in Java.

learn more… | top users | synonyms

20
votes
6answers
4k 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 is one option but it ...
19
votes
2answers
1k views

Pure python implementation of greenlet API

The greenlet package is used by gevent and eventlet for asynchronous IO. It is written as a C-extension and therefore doesn't work with Jython or IronPython. If performance is of no concern, what is ...
18
votes
4answers
2k views

Can I program for android using any JVM language?

Can I use other JVM languages besides Java (e.g. jruby, jython, clojure) to program for android, or is it java only? There was a similar question asked over a year ago but I wasn't sure if there'd ...
17
votes
6answers
5k 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 applicable to their parent ...
15
votes
5answers
678 views

Email an attachment in R with gmail

I am desiring to send an email in R with an attachment using gmail. I have found that sendmailR does not work with gmail because it requires authentication (I couldn't get it to work with gmail so I ...
15
votes
6answers
2k 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 at, to help my with ...
13
votes
2answers
493 views

Why is my file getting closed if I don't do anything with it for a while?

Original situation: The application I'm working on at the moment will receive notification from another application when a particular file has had data added and is ready to be read. At the moment I ...
13
votes
3answers
6k views

Distributing my python scripts as jars with jython?

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 colleagues noticed this and they ...
13
votes
4answers
4k 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 Jython concept, and ...
12
votes
6answers
6k views

Cross-platform way to get PIDs by process name in python

Several processes with the same name are running on host. What is the cross-platform way to get PIDs of that processes by name using python or jython? It's like pidof but in python (I don't have ...
11
votes
6answers
872 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 environment. Have you got a ...
10
votes
4answers
227 views

Some basic clarifications about Python?

Last night I came across the term called Jython which was kind of new to me so I started reading about it only to add more to my confusion about Python in general. I have never really used Python ...
10
votes
3answers
443 views

is None vs. ==None

I recently came across this syntax, I am unaware of the difference. I would appreciate it if someone could tell me the difference.
10
votes
2answers
2k views

When will Jython support Python 3?

According to Jython's documentation: Jython is an implementation of the Python language for the Java platform. Jython 2.5 implements the same language as CPython 2.5, and nearly all of the ...
10
votes
4answers
3k views

How can I make the PyDev editor selectively ignore errors?

I'm using PyDev under Eclipse to write some Jython code. I've got numerous instances where I need to do something like this: import com.work.project.component.client.Interface.ISubInterface as ...
10
votes
5answers
2k 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 on CPython. I've ...
10
votes
2answers
8k views

How can I add jars to the classpath when I invoke Jython *without* adding them to $CLASSPATH?

I'd like to do something similar to jython -cp FOO:BAR:BAZ argle.py. If I add FOO, BAR, and BAZ to $CLASSPATH this works. I tried to add them to sys.path at run-time, but that doesn't appear to work ...
10
votes
3answers
1k 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 ?
10
votes
4answers
1k 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 lot of features we're ...
9
votes
4answers
836 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 never print 'saving'. ...
9
votes
3answers
1k views

Security with Java Scripting (JRuby, Jython, Groovy, BeanShell, etc)

I'm looking to run some un-verified scripts (written in a yet-to-be-determined language, but needs to be Java-based, so JRuby, Groovy, Jython, BeanShell, etc are all candidates). I want these scripts ...
8
votes
1answer
105 views

Java file permissions for threads

I'm programming a Java server that has to handle Python code given by the user using Jython. Obviously, I can't just execute it without some risk of a cracker accessing files and system commands that ...
8
votes
2answers
634 views

Using JRuby/Jython for Ruby/Python interoperability?

Quite-probably a silly question, as I don't know much about Java/Jython/JRuby/bytecode, but.. I stumbled across _why's unholy again today.. It allows you to output Python bytecode from Ruby code.. ...
8
votes
1answer
1k views

Event handling with Jython & Swing

I'm making a GUI by using Swing from Jython. Event handling seems to be particularly elegant from Jython, just set JButton("Push me", actionPerformed = nameOfFunctionToCall) However, trying same ...
8
votes
3answers
3k views

Jython and python modules

I've just started using the PythonInterpreter from within my Java classes, and it works great! However, if I try to include python modules (re, HTMLParser, etc.), I'm receiving the following exception ...
7
votes
6answers
202 views

Python thinks I'm passing more arguments than I am?

Trying to set up some basic socket code in Python (well, Jython, but I don't think that's relevant here). import socket class Foo(object): def __init__(self): #some other init code here ...
7
votes
6answers
344 views

Learning Java so I can get at clojure

I have a history of hating Java, having used it pretty regularly in the late 90's during the 'slow as balls' era. As such, I never really learned it well. From what I understand, Java is actually a ...
7
votes
2answers
484 views

Why is Jython much slower than Cpython Even though JVM has Advanced a lot

No flame wars please. I really want to understand the technicalities involved. I am admittedly no fan of Java. But I consider JVM a fairly decent and well optimized, JIT enabled, virtual machine that ...
7
votes
3answers
289 views

Jython: Making a simple beep on Windows

I'm working with Sikuli, which (I think) is build on Jython. I want to make a script that does a small gentle beep to attract the user's attention. (This is on Windows.) How can I do this? I see that ...
7
votes
8answers
2k views

CPython vs. Jython vs. IronPython for cross-platform GUI development

I'm thinking of making some kind of experimental IDE for digital hardware design. So I can't decide witch platform to choose. I'm going to have text-editor with syntax highlighting, some vector ...
7
votes
8answers
1k views

Web Server frameworks for Python Web Apps

I'd like to get suggestions on the best way to serve python scripts up as web pages. Typically I'd like a way for me and my colleagues to write simple web pages with minimal effort ie we focus on the ...
7
votes
1answer
630 views

Clojure Jython interop

I was wondering if anyone has tried somehow calling Jython functions from within Clojure, and how you went about doing this if so. I have not used Jython, but I would imagine the Jython interpreter ...
7
votes
7answers
4k 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 some text and ...
7
votes
3answers
10k views

log4j with timestamp per log entry

this is my log output INFO main digestemails - process inbox INFO main digestemails - checking for emails in c:\development\DCMail\email\KN-Source INFO main digestemails - digesting ...
6
votes
3answers
329 views

Can I extend Jenkins with Jython/Python

Is it possible to write Jenkins plugins using Python (via Jython), and if so, where would I get started? I don't know Java (and don't have a real interest in learning it at the moment) so being able ...
6
votes
8answers
340 views

How to speed up this Python code?

I've got the following tiny Python method that is by far the performance hotspot (according to my profiler, >95% of execution time is spent here) in a much larger program: def topScore(self, seq): ...
6
votes
1answer
677 views

How do you invoke a python script inside a jar file using python?

I'm working on an application that intersperses a bunch of jython and java code. Due to the nature of the program (using wsadmin) we are really restricted to Python 2.1 We currently have a jar ...
6
votes
1answer
674 views

How to catch an exception in python and get a reference to the exception, WITHOUT knowing the type?

I'm wondering how I can catch any raised object (i.e. a type that does not extend Exception), and still get a reference to it. I came across the desire to do this when using Jython. When calling a ...
6
votes
2answers
466 views

Using Jython with M2Eclipse

I currntly use M2Eclipse for the majority of my Java development and Pydev for Python/Jython development within Eclipse. I would like to use Jython to prototype and test classes within my Java ...
6
votes
2answers
949 views

Howto multithreaded jython scripts running from java?

I'm constructing a framework in Java that will listen for events and then process them in Jython. Different event types will be sent to different scripts. Since jython takes quite some time to ...
6
votes
2answers
509 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?
6
votes
4answers
1k views

Does Jython have the GIL?

I was sure that it hasn't, but looking for a definite answer on the Interwebs left me in doubt. For example, I got a 2008 post which sort of looked like a joke at first glance but seemed to be serious ...
6
votes
9answers
1k 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 of resource overhead ...
6
votes
7answers
3k views

Using a java library from python

I have a python app and java app. The python app generates input for the java app and invokes it on the command line. I'm sure there must be a more elegant solution to this; just like using JNI to ...
6
votes
5answers
9k views

Automated Python to Java translation

Is there a tool out there that can automatically convert Python to Java? Can Jython do this?
6
votes
8answers
1k views

Java: Scripting language (macro) to embed into a Java desktop application

I am writing a graphics application in Java. Eventually I would like to build in a scripting language so things are programmable. Which language library do you recommend? Likely suspects are: Rhino ...
6
votes
15answers
4k 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 compiling, interpreting, ...
5
votes
1answer
69 views

Is there a way to create Eclipse plugins with Python?

As far as I understand Eclipse doesn't provide user with python bindings by default. Nor any projects of such kind was I able to find with google. Are there any third-party plugins for that? Any ...
5
votes
2answers
122 views

Why are my jython “*$py.class” files not being updated with code changes after I moved them to a different package?

I originally had all of my modules in one package. I recently created a sub-package in the original package, and moved a few modules into that. My src folder, and the 2 package folders, are all in my ...
5
votes
3answers
218 views

how do i trim the decimal of a number using clojure or jython

In clojure or jython: say I have a number 4.21312312312312 how can i get a number with just the first 2 decimals. It would return 4.21 for the example above. Thanks

1 2 3 4 5 12