9 questions from the last 7 days
0
votes
0
answers
25
views
Will AI becomes a threat for future engineers to get a job? [closed]
1.use of programmers to write code even ai is present?
2.will future engineers will be effected for getting jobs due to AI?
3.Can AI provide an exact code without an single error what the client is ...
-2
votes
0
answers
34
views
Azure Function App (Python 3.11 on Linux) stopped detecting all functions after Flex Consumption update – even Basic plan does not work [closed]
I’m running into a blocking issue with a Python 3.11 Azure Function App on Linux.
Until this week my Function App contained three HTTP-triggered Python functions and everything worked perfectly. After ...
0
votes
1
answer
20
views
nicegui.testing with User fixture for upload file ui.upload
Hello i am new on nicegui, i create a simple app where i need to upload the files and store this files on ftp server. I start to make some tests with nicegui.testing.User (i use this package because i ...
0
votes
0
answers
24
views
How do I prevent two VWAgent workers from deadlocking when they face each other after task assignment?
I’m working on a multi-agent grid environment using the VWAgent framework.
I have three agents:
White: explores and broadcasts cleaning assignments
Green & Orange: wait until assignments, then ...
-2
votes
0
answers
70
views
Как подключить python скрипт к базе данных mysql на phpmyadmin? [closed]
Пароль я использую настоящий, тут я его просто скрыл. Объясните мне пожалуйста, что я сделал не так? Вот сам скрипт:
import pymysql
try:
# Подключение к базе данных
connection = pymysql....
-4
votes
1
answer
54
views
Exception 'FileNotFoundError: [WinError 2] The system cannot find the file specified' encountered while installing pygame [duplicate]
A few weeks back, I got a fresh new copy of Python 3.14 on my Windows 11 PC. So, as many of my projects use pygame and pgzero, I had to install it. But this bunch of error messages are appearing:
...
0
votes
0
answers
42
views
DB2 CLP command via subprocess.run sometimes returns empty output and sometimes SQL1024N: A database connection does not exist
I'm running a DB2 stored procedure from Python using subprocess.run.
The command works perfectly when I run it directly in my shell:
db2 'CALL GET_DBSIZE_INFO(?, ?, ?, 0);' | awk -F': *' '/Parameter ...
Advice
0
votes
2
replies
30
views
What are all possible Python asyncio.open_connection() Exceptions?
I am writing a python program that is supposed to receive commands remotely, open a TCP connection locally (but not limited to localhost), and report the result.
I was looking for list of possible ...
2
votes
0
answers
47
views
PywinAuto API - child_window - returning multiple elements
Here is my code which is throwing me an error
I am trying to open a Group Policy Editor and select setting under Personalization.
I have obtained the sample code from this question
GUI Automation of ...