Why does my pygame program start to lag(and sometimes stops responding) after...
I am a bit new to python and I wanted to write a program to send data to an arduino whenever w, s, a or d was held down. Well I also decided to make it a bit more interactive so whenever I held down a...
View ArticleImproving sphere detection in a bearing with opencv
Via a USB microscope on a RPI4,I'm trying to check how many balls are on the image.I'm trying with the HoughCircles solution and I have some results with tuning the parameters.But I'm wondering if it's...
View ArticleHow Do I Detect Which Radio Button Is Being Pressed In Python?
I have write this code:from tkinter import * count = 0def Pick_Celeb(): for v in range(len(Celeb_Photos)): if (z.get() == v): print("You ordered "+Celeb_Names[z]) def click_button(): global count count...
View ArticleImplications of querying database before lambda_handler
Here is the pseudo-code for what current lambda function looks like;import pandasimport pymysqldef get_db_data(con_): query = "SELECT * FROM mytable" data = pandas.read_sql(query, con_) return datadef...
View ArticleHow to make a python script executable?
I have a files monitor project in python and i want to get benefit from this prject by selling it.My first question is how can I design a simple interface for the user just to do simple things? and can...
View ArticleHow can i error handle user input and a whitespace?
when user input a D for example, i want it to be the same when he enters (D ), if he puts an extra space i meanimport timetitle = "\t \t Welcome to the shapes program!"underline = "\t " +"=" *...
View ArticleRotate 2D numpy array about a specific line
I am trying to rotate an image about a specific line drawn within the image. Think of the image of a random 2D numpy array. I have two specific points in the array through which I would like to plot a...
View Articlestreamlit app for whatsapp chat analysis having error code 403
im trying to build a streamlit app which accepts a whatsapp chat txt file as input and renders some graphical visualization of analysis i conduct on it in python . it is letting me select files , but...
View Articleheadless authentification of an app to google api
I have a python app which needs (among many other things) to read a googlesheet.The lineflow = InstalledAppFlow.from_client_secrets_file(cred_file, SCOPES)requires me to visit...
View ArticlePlotly - How to plot a 2d histogram with continuous cumulative Z values
I'm currently trying to plot a 2d histogram in Python using plotly.I want the chart to feature cumululative, continuous Z values, like so (below is a mockup)For example, if there is one sale at 12:00,...
View ArticleOpenAI & Apify - doesn't seem to be using stored data in chatbot
I've been trialling this example to build a Python AI chatbot, which scrapes a website; stores the data and uses OpenAI.Right now, I have scrape.py which gets the website stored in the .env file and...
View ArticleHow can program recognize increase in i [duplicate]
if i == 17: v += -680 s += 28if i == 34: v += -680 s += 28#etcI want the if statement to happen everytime i increases +17. How can I turn this into one if statement instead of countless?
View ArticleCan someone help me on django error on pycharm?
I can't runserver on django in pycharm.error: modulenotfound (django_project)I asked Chatgpt and tried some of it solution but it didn’t work.So can someone help me how to fix it? I'm new in django,...
View ArticleHow do you check whether a number is divisible by another number?
I need to test whether each number from 1 to 1000 is a multiple of 3 or a multiple of 5.I tried this code in Python 2.x:n = 0s = 0while (n < 1001): x = n/3 if isinstance(x, (int, long)): print...
View ArticleHow to rotate mediapipe facial landmarks in the roll, pitch, and yaw axes in...
I have extracted facial landmarks using mediapipe and stored it in a csv file. When I visualised the face using the 468 x-and y-coordinates, the face that I depicted is rotated in roll, yaw, and pitch...
View ArticleAttributeError: module 'keras' has no attribute 'utils'
I was trying to use Keras to classify movie reviews into their respective sentiment classes (positive or negative).import tensorflow as tffrom tensorflow import kerasimport numpy as np# Preprocessing...
View ArticleCheck if the number is the prime in Python
I am learning programming from scratch first time in my life. I am learning the Python language. My first difficult task is to write algorythm which checks if the number is the prime number. The script...
View ArticleHow to effectively replace sentences in word document with python
This is what I made so far :from docx import Documentdocument = Document('filename.docx')dic = {'Stack':'Stack Overflow','October 18 2021' : 'Actual Date'}for p in document.paragraphs: inline = p.runs...
View ArticleSimple Django app deployed on Azure App Service keeps showing application error
It keeps showing error after the app has been succesfully deployed on the Azure App Service, has anyone experienced something similar to this?I have tried ssh into it to confirm my files are intact and...
View ArticlePoetry fails to install tensorflow
I've got a poetry project. My environment is Conda 22.9.0 on a windows machine with poetry version 1.2.2:This is my pyproject.toml file:[tool.poetry]name = "myproject"version = "0.1.0"description =...
View Article