5
votes
3answers
88 views
What is the best way to call Java code from Python?
I have a Java class library (3rd party, proprietary) and I want my python script to call its functions. I already have java code that uses this library. What is the best way to achieve this?
1
vote
4answers
105 views
is there a Java equivalent of Python’s defaultdict?
In Python, the defaultdict class provides a convenient way to create a mapping from key -> [list of values], in the following example,
from collections import defaultdict
d = defaultdict(list)
…
0
votes
1answer
25 views
Pylucene eclipse plugin
Is there a Pylucene eclipse plugin? or am I missing something?
I want it for Auto complete. Is the import structure same as java lucene
1
vote
3answers
115 views
Terracotta for Python world?
Hi,
Would you know if something similar to Terracotta (in Java world) exists for Python world? Twisted ? Or something else...
Thank you in advance for all ideas.
0
votes
3answers
63 views
Pulling HTML from a Webpage in Java
I want to pull the entire HTML source code file from a website in Java (or Python or PHP if it is easier in those languages to display). I wish only to view the HTML and scan through it with a few …
3
votes
12answers
713 views
Algorithm - How to delete duplicate elements in a list efficiently?
There is a list L. It contains elements of arbitrary type each.
How to delete all duplicate elements in such list efficiently? ORDER must be preserved
Just an algorithm is required, so no import any …
2
votes
1answer
45 views
How does python webdriver work?
Hi, I want to add some features to webdriver, but since I don't know Java at all, I want to understand the way it works first. So as I get it, there is a firefox plugin (javascript) and there is java …
4
votes
8answers
220 views
Calculate percent at runtime
I have this problem where I have to "audit" a percent of my transtactions.
If percent is 100 I have to audit them all, if is 0 I have to skip them all and if 50% I have to review the half etc.
The …
1
vote
4answers
74 views
What the mechanism use to integrate python with other languages (.Net, Java …)
Hi everybody,
Somebody talking the python's code can embed into C#'s code. What the mechanism to do that? please explain for me.
Thanks a lot
4
votes
12answers
1k views
Multidimensional array in Python
Hi,
I have a little Java problem I want to translate to Python. Therefor I need a multidimensional array. In Java it looks like:
double dArray[][][] = new …
2
votes
5answers
125 views
How to check if python is installed in windows from java?
How can I check from inside a java program if python is installed in windows?
Python does not add its path to the system Path and no assumption is to be made about the probable path of …
2
votes
1answer
42 views
Java to Python RSA
I'm trying to encrypt a string from Java to Python, using the library Bouncy Castle J2ME on the client side and Python M2Crypto on the other.
Everything is pretty good, I can decrypt it properly, but …
3
votes
2answers
96 views
Interacting with SVN from appengine
I've got a couple of projects where it would be useful to be able to interact with an SVN server from appengine.
Pull specific files from the svn (fairly easy, since there is a web interface which I …
14
votes
20answers
1k views
My python program executes faster than my java version of the same program. What gives?
Update: 2009-05-29
Thanks for all the suggestions and advice. I used your suggestions to make my production code execute 2.5 times faster on average than my best result a couple of days ago. In the …
1
vote
1answer
43 views
Using Jython From Eclipse Plugin
I am having a tough time getting jython to work properly when run from an Eclipse plugin. I have a simple object factory that loads a python module conforming to a Java Interface. All of this works …
