Jython is an open-source implementation of the Python programming language in Java.
0
votes
0answers
17 views
Multi argument constructor in Jython
I declared a Java class -
public class Beach {
private String name, city;
public Beach(String name, String city) {
this.name = name;
this.city = city;
}
}
I imported ...
0
votes
0answers
6 views
White gridlines over image using JES (python)
How can I write a program using JES to draw “White” gridlines on an image where the horizontal
gridlines are separated by 10 pixels and the vertical gridlines are separated
by 20 pixels?
2
votes
0answers
8 views
Packaging a Jython program in an executable jar
I am trying to package a jython program into an executable jar which the user can simply double-click to run without installing jython ahead of time. Ultimately, I would like to include an additional ...
0
votes
0answers
5 views
How can I load data files in a Jython module?
I have some Jython modules that I'm trying to make work from within a JAR. Everything is set up fine except that some modules expect to open files from the filesystem that are located in the same ...
-1
votes
0answers
21 views
NoClassDefFoundError when import my Java class in Jython interpreter
I'm trying to import java class I created MyClass, from jython
using:
sys.path.append(r'/path/MyClass.jar')
from com.mypackage import MyClass
The error
java.lang.NoClassDefFoundError: ...
0
votes
1answer
11 views
How to use keyDown() and keyUp() in sikuli?
This is my code snippet,
reg = selectRegion("Selected a region")
reg.keyDown(KEY_CTRL)
reg.keyUp()
My objective is to select some lines, as we do it by pressing CTRL and then scrolling down, but it ...
1
vote
1answer
45 views
How to check variable type using “type” function in Sikuli
Sikuli has its own function type for typing. Is there any way to invoke python (jython) function type? Module builtins can’t be imported. Of course I can use isinstance instead but I am just curious ...
2
votes
3answers
81 views
Trying to run simple monkeyrunner python script, 'importerror no module named os'
I have the android emulator/SDK installed on my computer, and I'm trying to run a simple python script, but it fails on the 'import os' line (which should be standard!)
Here's my script:
import os
...
1
vote
1answer
23 views
Does jython support class-level fixtures from unittest module
I am using unittest in Jython. (I am writing some Sikuli tests)
I am able to make setUp() work, but I am unable to get setUpClass() running.
Does anyone know if this is supported in Jython? Has ...
0
votes
1answer
65 views
For loop: Syntax Error: mismatched input '' expecting EOF
I'm using jython 2.5.1 and netbeans,
I have the following code:
import csv
import pprint
import os
column=[]
mycsv = csv.reader(open('F:\lia1.csv'))
for row in mycsv:
text = row[0].strip()
if ...
2
votes
2answers
36 views
with keyword and jython 2.5.1
I have the following:
with open("c:\xml1.txt","r") as f1, open('c:\somefile.txt','w') as f2:
this is giving a syntax error :
with open("c:\xml1.txt","r") as f1, open('c:\somefile.txt','w') as f2:
...
0
votes
1answer
42 views
creating an object within a class - where is that object?
I am creating an object X from a method in another class C. Then I am trying to reference that object in methods of that class C by passing it as an argument, but I get the error name X not defined. ...
2
votes
0answers
59 views
Using Overtone in Jython / Clojure Dependencies in Jython
I'm currently working on a project that primarily uses Jython, but makes use of interop (using rik0's pyclj solution) with Clojure to utilize the Overtone library. Typically, leiningen is the primary ...
0
votes
0answers
24 views
Jython images (grey scale and posterise)
How to create a new grey-scale picture of the original image and show it on screen in jython (JES) and also how to create a posterised picture of the new grey-scale image and show it on screen.
thanks
...
0
votes
2answers
40 views
Creating a list within a list - not working
Ok so I am having a problem whereby I need to make another list from a list I have already split. Here is the code.
def lists():
instructionList = instructions()
Lists = ...
2
votes
1answer
31 views
Script to modify files inside WAR
I need to update the resource files inside a WAR for different environments (eg Database info)
So i need to write a script which will update these files inside the WAR. Please let me know if the ...
1
vote
0answers
33 views
Is it possible to create a python vitualenv using a standalone jython jar as EXE?
I know jython can be used as the python interpreter for a virtualenv. Simple as:
virtualenv -p /usr/local/bin/jython jython-env --no-site-packages
Let's say I didn't want to install jython at all ...
0
votes
1answer
38 views
Invoking Java from Jython versus invoking Java from Scala and vice versa [closed]
Compared to Scala it seems much more difficult to call Java methods from Python :
How do I call Java Methods from Jython that is executed by the Java class?
From reading this answer it seems you do ...
-2
votes
1answer
58 views
How to write a byte array encoded in UTF-8 format to a file in Python? [closed]
I have an HTTP response, which is a byte array encoded in UTF-8 format. I have to write this byte array into a file using Jython. Please help.
-2
votes
1answer
28 views
What are some additional features using java.swing that I could add to my project [closed]
I am currently developing a web crawler in Jython for school. My school was a bit lackluster on java.swing and didn't teach much besides frames/panels. Which is why I have come here seeking advice ...
0
votes
2answers
25 views
Trying to call wsadmin objects from a method that is defined in another file gives a NameError
I have a script named test.py which is the main script that imports all definitions from def.py.
def.py
def test():
print AdminApp.list() #Prints the applications installed
#EndDef
and the ...
0
votes
1answer
41 views
How can I install jython on Windows 7?
I have downloaded "jython-installer-2.7-b1.jar". I want to install it on Windows 7. What's the steps can I follow? Please guide me.
-1
votes
0answers
21 views
How do you make a pic all Green in Jython?
I need to get all of the pixels and change their r and b values to 0 and green to 255
i also need to make an all blue function and all red.
this needs to be a function so i can add it to the photo ...
0
votes
1answer
39 views
Using .pyd library in Jython
Actually i'm about to start a project, in the company we are using java as a main technology in owr web app server (IBM WebSpher), but now we need to integrate existing technology with a new product ...
0
votes
1answer
46 views
Jython - importing a text file to assign global variables
I am using Jython and wish to import a text file that contains many configuration values such as:
QManager = MYQM
ProdDBName = MYDATABASE
etc.
.. and then I am reading the file line by line.
...
0
votes
0answers
15 views
Pass object A derived from B to a method foo(B oObj) in Jython
So in Java I have
public abstract class A extends B {...}
and somewhere I have the method
public void foo(B bObj)
How can I use that function foo with object A in Jython?
0
votes
1answer
41 views
PYTHON (Jython) how to get DATE TIME value in string - all before specific string?
I have string which contains timestamp:
Wed Apr 24 14:39:49 CEST 2013
Of course I have this similar values in many records so I want to get all before CEST. (I have records and with CEST 2012, ...
0
votes
1answer
51 views
Jython graph library
I need to use python with Java in a project in which graphs (the kind with nodes and edges) plays a large role. I want to visualize those graphs in a simple GUI and update its node labels/edge ...
0
votes
1answer
43 views
Unable to provide user input in PyDev console on Eclipse with Jython
I was trying to debug a jython program for a long time that I was running in Eclipse using the PyDev plugin, but it worked once I ran it from the terminal instead. I suspected it might be that the ...
3
votes
1answer
53 views
How can I get Sikuli to interact with a VMware guest OS?
My problem is that I can't "type" (or send characters) inside of a text field.
VMware has this behavior that the first mouse click gets the focus on the main window and the second mouse click goes ...
1
vote
0answers
161 views
Jython with java sandboxing: granting permissions more specific?
I write a python- sandbox for running python scripts restricted, using Jython and the java security policy. To granting permissions I defined a policy file like this:
grant {
permission ...
1
vote
2answers
395 views
How to write Test Cases in Robot Framework with Selenium Library
I have installed Robot Framework. I am searching for example Test Cases for Robot Framework using Selenium Library.
I need a guideline to start writing TCs on Robot Framework. Help is appreciated.
0
votes
1answer
39 views
MonkeyRunner and MySQL
I got a problem using MySQL with MonkeyRunner, need a help with MySQL Driver Name. The starting of my script is:
#coding : utf-8
from com.android.monkeyrunner import MonkeyRunner,MonkeyDevice
from ...
0
votes
1answer
32 views
Importing django modules from java
I am trying to call some classes from my django project using Java.
Here is my code:
PythonInterpreter interpreter = new PythonInterpreter();
PySystemState sys = Py.getSystemState();
...
0
votes
1answer
41 views
SikuliX 1.0rc3 r903 type() to use normal number instead of Numpad
I have a little automation script with SikuliX to maintain a certain flow in a application and I need to press a numeric key (1,2,3...,0).
The problem is that the application doesn't seem to accept ...
0
votes
0answers
21 views
Wsadmin script for linux [duplicate]
I need functional wsadmin script for OS Linux. I want to deploy my application from linux into remote WAS server. I was looking for everywhere, but I found same erroneous scripts.
My current script ...
-1
votes
1answer
70 views
Unable connect WLST to Admin Server
I new in Weblogic and WLST
I write script connect WLST to Admin Server by Jython but I revecied error when connect.
WLSTException: Error occured while performing connect : Error getting
the ...
1
vote
0answers
43 views
How to use ExpectJ in Jython?
In our company we use Jython for some reason. I need to extend it with the ExpectJ, but I could not figure out how to do it.
I managed to download the expectj-2.0.7.jar, expectj-2.0.7-sources.jar and ...
1
vote
0answers
40 views
Jython generate class files
I would like to know if it is possible to generate class files corresponding to my Jython program.
I found this :
$> jython -m compileall myfolder
This does generate class files with coherent ...
0
votes
1answer
56 views
Double buffering in Jython
recently I started learning Jython and now I have rather simply problem. I would like to improve quality of my animation. Unfortunately I don't know how to add double buffering to my applet . Could ...
3
votes
2answers
49 views
AttributeError when accessing member of Java class in Jython
I am trying to import my own java class into some jython code. I compiled my .java to a .class file and put the .class file into a .jar. I then include this .jar file using ...
0
votes
0answers
28 views
Instantiate a Jython class from Java, where the jython constructor receives object instances as parameter
This is my first "project" where I attempt to "mix" java with jython, until this day I was either completely doing it in python or java.
I have a few Jython classes that I need to access from Java. ...
0
votes
3answers
55 views
Rank within Groups in Pig 11
Pig question,
I have my data setup the following way.
Function Group Home Name
Rent MX 1 John
Rent MX 1 Jake
Rent MX 1 Pat
Rent DG 2 Jason
Rent DG 6 Patrick
...
1
vote
0answers
52 views
Use IronPython and Jython as API Tester
We have a server which exposes a set of REST APIs. Those APIs are meant to be exposed for clients on different platform so we want to provide SDKs in Java and .NET
The SDKs are using similiar ...
0
votes
2answers
103 views
Is it possible to install Robot Framework without installing Python on Windows?
I have Java 1.6. And I have installed Jython on Windows by following the steps below:
Download "jython-installer-2.7-b1.jar"
Open command prompt --> Go to the location/folder where ...
1
vote
0answers
88 views
Jython Remote debugging Intellij Idea, using Pycharm plugin
Before marking this as a duplicate please read the full thread
OS - Windows XP
Primary Language - Java
Scripting Language - Jython
IDE - Intellij Idea
Python Plugin ...
0
votes
1answer
21 views
ODI | Decrypt a file Using DES
I have a file encrypted using DES algorithm. I want to decrypt the file in ODI (Oracle data integrator) by writing procedure in Jython. I have explored the built-in functions, but I am unable to find ...
2
votes
1answer
58 views
Calling jython code from python
I was writing some code in python that needs to write/read to HBase. I thought of using HappyBase to interact with the HBase before I found out that it is not yet for python3.
What I'm thinking is to ...
0
votes
2answers
38 views
Adding suboptions using optparse in Jython
I am using optparse to add options to Jython script. They are like
$script.py -clear
$script.py -start
$script.py -stop
so on, now my question is how do I add suboptions to any certain option,, ...
0
votes
2answers
53 views
Jython SyntaxError (from Java app)
In my Java app I want to use Jython to interpret Python code.
So I initialise Jython as follows:
PySystemState.initialize();
PythonInterpreter jython = new PythonInterpreter();
Then I want to test ...




