341,469 questions
0
votes
0
answers
11
views
How to perform Test Automation to Access Call feature in MS Teams with robot framework
I need to Access the Call option Inside MS Teams and perform call Opreations using test automation - robot framework with python.can it be done USing FLAUI Library . as the MS teams is a Desktop App ...
0
votes
0
answers
34
views
ImportError: cannot import name 'MistralCommonBackend' from 'transformers'
Given:
$ pip install transformers mistral-common -Uq
$ pip show transformers mistral-common torch # to verify
Name: transformers
Version: 4.57.3
Summary: State-of-the-art Machine Learning for JAX, ...
2
votes
1
answer
103
views
How can I get a single table from all the pages of a PDF file using Python and pdfplumber?
I'm trying to get all the tables from my PDF file.
I have this code that works correctly for reading PDF files, but it only works correctly when the PDF has a single page. If it has more than one page,...
0
votes
0
answers
53
views
Webots 2025a + ROS 2 Jazzy: Velodyne point cloud appears distorted in RViz2
I am new to Webots 2025a and ROS 2 Jazzy running on Ubuntu 24.04. I am accessing Velodyne HDL-32E point cloud data in rviz2, but the resulting visualization appears distorted or tilted (like the ...
1
vote
1
answer
79
views
Mock not called by subprocess
An instance of class A starts a sub-process that calls a method of an instance of class B. It works as expected in real-life, but unit tests fail because the mock object replacing the object of class ...
Advice
0
votes
2
replies
50
views
Difficulty in getting reflex events to update a text_area component
I have an application that has a text_area that gets filled with lines of text. The code for the
application is below:
import time
import reflex as rx
import asyncio
from rxconfig import config
...
0
votes
1
answer
90
views
PyInstaller app works standalone but fails after Inno installer build: failed to load python310.dll
I built a Windows application using PyInstaller in a Python 3.10 (64-bit) environment.
When I run the executable generated directly by PyInstaller, it works correctly.
However, after packaging the ...
Best practices
0
votes
1
replies
117
views
How do I determine the correct order of Lambda layers in AWS?
I’m working with AWS Lambda and need to attach multiple Lambda layers to a function. I know that AWS allows you to specify the order of layers, but I’m unclear on how the ordering actually affects ...
-4
votes
1
answer
83
views
Getting an error code on my web scraping assignment
I am new to coding and am doing a scraping problem a friend sent me. I have set up this Scraping code according to the assignment but am getting the error code 403, but it's not telling me what's ...
0
votes
1
answer
110
views
How to destroy Tkinter windows from external script?
I have a script called GUI running two tkinter windows and I've been able to kill my program from within the script by creating a function for it
def gui_kill():
root.destroy()
win.destroy()
...
0
votes
0
answers
35
views
Monero MultiSig Wallet code returns that the experimental MultiSig flag is off, why doesn't it work like this?
Currently developing a Monero MultiSig CLI Wallet in Python3.13 and I have the issue that the set enable-multisig-experimental 1command was called in different ways and I still get the issue, that ...
0
votes
1
answer
78
views
AttributeError: module 'typing_extensions' has no attribute 'Generic' during import dash
I'm running python 3.11.2 in a venv (/home/pi/myenv) on a Raspberry Pi Zero. I installed dash in the venv using pip. When running import dash I get the following error:
>>> import dash
...
0
votes
0
answers
67
views
How to fix Tkinter program shrinking when using MSS library to screenshot
Whenever I'm using mss I'm trying to take a screenshot of part of my program in which I would create an array of x and y values of nodes and find the minimum and maximums of those x, y values then ...
0
votes
1
answer
61
views
Connection to AWS RDS with Secret manager creds from python SQL Alchemy failed with no pg_hba.conf entry for host ... no encryption
I created an AWS RDS in CDK using secret manager credentials:
rds.DatabaseInstance(
self,
id=resource_name,
instance_identifier=resource_name,
...
-4
votes
0
answers
45
views
Reverse an Array by recursion using swap in python [duplicate]
so I was trying to reverse an array by recursion so the code logic is we are swaping right most end value to the left most end. I have implemented logic but the thing is My recursion function retuns ...