Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
75 views

I have a script that I load via: python = new PythonInterpreter(); String script = "script I loaded from somewhere" try { python.exec(script); } catch (Exception e) { ...
Robert's user avatar
  • 31
0 votes
0 answers
29 views

[update] Sorry guys! processbuilder works fine, but it was my other problem. It was just that I didn't run it in a virtual environment with the libraries needed for my python code installed... Thanks! ...
Ellie's user avatar
  • 1
0 votes
1 answer
687 views

I'm using OWASP ZAP to scan an API, and I've successfully imported the OpenAPI definition. However, I'm struggling to configure the Authorization header (specifically for a JWT token) so that it is ...
Andre Luis's user avatar
0 votes
0 answers
242 views

We're working on a Full Stack Spring Boot project. One of our team members has developed a Python script for web scraping and audio (speech) integration to interact with the data. This script has been ...
Eshtar Chi7aja's user avatar
0 votes
1 answer
144 views

I'm trying to use Jython in a Sketchware project to run some Python code. I'm not sure how to install and set up Jython in Sketchware. Could someone guide me through the steps required to integrate ...
Text Now's user avatar
0 votes
1 answer
117 views

I have a simple SUT script (JYTHON). I'm trying to perform a basic operation wherein I'm finding a link that has the text "Welcome" and then clicking on it.I checked in the console and the ...
Test User's user avatar
0 votes
1 answer
114 views

I am getting the following error: NameError: global name 'FillPatternType' is not defined From this code: oStyle.setFillForegroundColor(IndexedColors.GREY_50_PERCENT.index) oStyle.setFillPattern(...
Fonsi Jimenez Rivas's user avatar
0 votes
0 answers
29 views

Im trying to use java gui in intellij to make a login screen for a instagram scrapper program ran on a python file. However, i need to run the python file from java and so i'm using Jython to try and ...
Daniel garcia's user avatar
0 votes
1 answer
107 views

I'm new to Apache Nifi Community and I got stuck at one point - please help me for the below problem : In Validate CSV processor I'm giving below schema(schema_used) to validate the CSV input. But, ...
Aiden Martin's user avatar
2 votes
2 answers
91 views

I am unable to execute the following command" java -jar ~/.m2/repository/org/python/jython-standalone/2.7.0/jython-standalone-2.7.0.jar -m ensurepip I get the following stack trace. Can anyone please ...
Paddy's user avatar
  • 3,660
4 votes
1 answer
312 views

I'm currently working on a Jython project (using Jython 2.7.3) in PyCharm Community Edition (2023.2.3) and I'm having difficulty configuring Java libraries in the IDE. Although my code runs fine when ...
Memmo's user avatar
  • 278
0 votes
1 answer
767 views

i have created a python code to display data in the database, I want to test and see the value of Throughput, Latency, Resource utilization and Error Rate of the code using the jmeter application. but ...
Equanimity9121's user avatar
0 votes
0 answers
111 views

I am trying to make some utils for a Python script that run using Jython 2.7.0 (I could update if needed) My current problem is pretty simple, i can't import/use my module For a bit of context, my ...
Nqtsu91's user avatar
1 vote
1 answer
55 views

How would I be able to set certain columns of a JTable to be editable/not editable in Jython? My table: self.table_data = [] data_model = DefaultTableModel(self.table_data, self.colnames) self.table = ...
co3next's user avatar
  • 13
2 votes
0 answers
245 views

Is someone here with experience in developing Python script for Ghidra? It seems that there is not much information about python scripts, especially for GUI components. I would like to create some GUI ...
joker's user avatar
  • 21
0 votes
1 answer
297 views

I'm currently trying to create my own Burp extension to automatize testing. For this, I want to run script I made before via Burp. I need to import differents libraries for this, such as requests. To ...
DuWell John's user avatar
1 vote
1 answer
104 views

I'm currently trying to code my first burp extension in python and I have an error when it comes to managing bytes array which I get from the response. I used a, probably, outdated tutorial which use ...
DuWell John's user avatar
0 votes
0 answers
49 views

I am using the Java library nom-tam-fits for reading and writing FITS files within Jython 2.7. I need to manipulate the underlying data arrays in the FITS HDUs however I am not able to make copies of ...
Snyder005's user avatar
  • 224
2 votes
0 answers
64 views

I trying to connect a Python script with a Java project that uses Maven. To achieve this, I need to install a module into the Jython environment. I have tried the following approach. C:\Users\lordonez\...
Cuervo 616's user avatar
2 votes
0 answers
189 views

I'm using Jython 2.1, so I cannot use type annotations ({var}: {type}) but I use type comments (# type: {type} for variables and # type: ({param_type}) -> {ret_type} for functions). I would like to ...
LukeSavefrogs's user avatar
1 vote
0 answers
42 views

I was able to get a listener working for a JFrame, but I'm missing something with doing the same thing with a JInternalFrame. I built up some basic code from various samples I found, and I'm hoping ...
HydronicsEng's user avatar
-2 votes
2 answers
4k views

I have a problem that with my automation script where it needs to get the JRE Root path for java versions. I managed to get the path for java 8 and java 11 using java -verbose -version enter image ...
Anna Ariffin's user avatar
0 votes
0 answers
51 views

I am trying to create a maven java project which calls python script that have imports from 3rd party modules like pandas. I have installed Python3 and installed pandas using pip command. I am using ...
LetsCode's user avatar
  • 198
0 votes
1 answer
174 views

I check a Java application with QFTest. I need to prove that the HMI is stopped at Shutdown. In QFTest, I created a Jython procédure which try to send a socket to the HMI, if it can't, then it means ...
Skartt's user avatar
  • 601
-1 votes
2 answers
80 views

I have two rows of data in row 4 and 5. Row 4 has the titles for the data and row 5 holds the actual data. I want to go ahead and sort them out in any sort of format. I am completely new to python so ...
a_44's user avatar
  • 33

1
2 3 4 5
56