Why does the script menu function repeat after selection
async def main_menu(): menu_active = True # Variable to control the display of the menu while menu_active: print("\nMain Menu:") print("1. Activate script") print("2. Account authorization") print("3....
View ArticleNLTK Download SSL Certificate Failed [duplicate]
I tried to use nltk.download("stopwords") via nltk in Python, but it gave an SSL certificate error.I was waiting for Stopwords to load and I came across the following error.[nltk_data] Error loading...
View Articleidentifying if an image is Binary image, Gray scale image or Color image
I have a directory with many images that are in these 3 scale: binary, gray scale and colorful.using cv2 i managed to check if the image is colorful or not.def color_type(address): image =...
View ArticleVisual Studio claims that Python 3.12 is "old version". Rants that NuGet...
After a clean install on a new windows installation, Visual Studio Community 2022's NuGet package manager, when Python 12 is selected, claims that "Due to new security restrictions, installing from the...
View ArticleUnable to Push to Bitbucket Repository: Git Push Error
hi everyone I tried to push some project into bit bucket but it just gives me the message of permission denied(public key)fatal: could not read from remote repository. and idk why i entered every thing...
View ArticleIn Django, how can i execute multiple conditions (if/else) in a function with...
I would like to execute some multiple conditions (if/else) in the def function_check function and print their multiple result in a grey div, for example like this:Initially, i had all the code in the...
View ArticleFastApi Class based Domain Driven Design
I am coming from a thought process of Java world. I moved to fastapi thinking it would be faster for rapid prototyping but I am getting stuck more and more in this quagmire. I am finding it much more...
View ArticleEntering Value into Search Bar and Downloading Output from Webpage using python
I have a similar question to this (Entering Value into Search Bar and Downloading Output from Webpage) where I am trying to search this webpage (https://megascatterbomb.com/mcd), and automatically...
View ArticleAny suggestions for MLH fellowship code sample?
I'm planning to apply for the MLH Fellowship this year, and I want to present a strong code sample showcasing my full stack development skills. The project I'm considering is a Task Manager Web...
View ArticleJust installed Python 3.12 but it doesn't work
I'm trying to clone a repo from GitHub and the 3rd step involves running Python3 pip install to install the requirements.I didn't have python installed so I installed it using Winget with the command...
View Articleerror when link is chrome:// dino but works for every other link #2264
System infoPlaywright Version: [v1.XX]Operating System: [Windows 11 latest]Browser: chromeSource codeimport asyncioimport loggingimport osfrom playwright.async_api import async_playwrightfrom...
View ArticlePython: 64/32 bit mismatch - how to get rid of it?
Still in the learning phase, I first installed (via Windows installer) Python 64bit and wrote me a .cmd with all the "pip installs" I felt useable. While trying out WXpython and looking forward to use...
View ArticleHow do i mock a function being called inside the run method of a python...
i have a function in a my_fuction.pydef my_funtion(): #do something print("doing something") return True i also have a a threading.Thread inhereting class called my_thread.pyfrom threading import...
View ArticleCalculating the equation of a helix from points and known parameters
I have a set of points that I know lie on the same helix but they are not on a regular interval. It’s oriented on the y axis and reversed and has a known pitch and diameter.I need the equation to be...
View ArticleUpdating animation with slider
I'm currently developing an animation featuring a double pendulum, and I'd like to incorporate sliders to enhance user interaction. These sliders are designed to control the two initial angles of the...
View ArticleBounding box regression loss increases where RPN loss decreases Oriented RCNN
I am playing around with an oriented RCNN with a custom satellite DOTA dataset in MMRotate. When I train the Oriented RCNN, the bounding box regression loss starts very low (loss ~ 0.009) and almost...
View ArticleReplace All '&' to 'And' with exceptions
I learned regex all from scratch and have been struggling with this regex issue for a while and still haven't solved it.Input:exception_lst = ['r&b','m&a']str_lst = ['fe r&b...
View ArticleElastic Performance for Spatial Queries Slows Down when Geometries are in...
I have a usecase to query ES for spatial intersection query with a Multipolygon. I tried two approaches where I store documents in flat structure, where 1 Polygon represents 1 document and in another...
View Articlekdeplot() got multiple values for argument 'data'
help me to solve this problemsns.kdeplot('Age', data=data, ax=ax1, shade=True, color='grey', alpha=1)ax1.set_xlabel('Age', {'fontsize':16,'fontweight':'bold', 'color':'black'})error messageTypeError...
View ArticleQueue structure for a webscraper API
I built a simple webscraper that runs in a docker container. It basically puts company names into a search and reads out the result. Unfortunately there is a limit to how many searches I can do per...
View Article