show console OR make gui dispaly for script progress Python TKInter
i have made a exe launcher of sorts, that combines many scripts into one monolithic script with different tabs in a TKinter GUI for the different scripts, for most of the mini programs clicking on a...
View ArticlePyPDF 2, Writing New File, Unable To Read New File
I have a very basic PDF file. I am reading that PDF file, updating some of the fields of that file, and then writing a new file name with the code below.from PyPDF2 import PdfReader, PdfWriterfrom...
View ArticleHow do I update Anaconda?
I have Anaconda installed on my computer and I'd like to update it. In Navigator I can see that there are several individual packages that can be updated, but also an anaconda package that sometimes...
View ArticleStrange behaviour of python ```@property``` [closed]
I have a class which is a set of words:import mathfrom typing import SelfFREQUENCIES: dict[str, float] = {}FREQUENCIES['trial'] = 0.023FREQUENCIES['raise'] = 0.124def entropy(probability: float) ->...
View ArticleDraw a filled polygon with fill color *inside* the outline
I want to draw a polygon as an outline and fill it with a specific color. This should be an easy enough task for PIL... Unfortunately the fill argument produces an image that bleeds out of the...
View ArticleFind length of shortest substr that can be removed from a string resulting in...
Just failed a coding challenge for an interview and now im scratching my head. How can one accomplish this task?Given a string s of length n, the task is to find the length of the shortest substring,...
View ArticleWhy is there implemented a default blank row when writing csv from python...
I have an example of writing a csv from a python linked list:import csv# field names fields = ['Name', 'Branch', 'Year', 'CGPA'] # data rows of csv file rows = [ ['Nikhil', 'COE', '2', '9.0'],...
View ArticleWhy result files hash is not similar to calculated hash from image in memory
I have a code to open a png file then edit its pixels one by one and calculate hash. then save that image to hard disk if its hash is according to what i want.import hashlibfrom PIL import Imageimport...
View ArticleSelenium Python || How to click on Toggle button based on its status
Could you please help me with below HTML and selenium?I am trying to click on the toggle button by id "elm_guest_code_auto_generate" and here is my python code:toggle_button = WebDriverWait(driver,...
View ArticleTemplates not found when using flask
My problem is when i run return render_template("templates/home.html") it returns the error that could not find a template here it isFile...
View ArticleRuntime error with PyTorch's DDP in the diffusion model training
IssueI am using CoDi which is multimodal Latent diffusion model. I am trying to remove the modules on images and video from CoDi and fine tune it with text-music pair data.The training script(train.py)...
View ArticleSplit array of integers into subarrays with the biggest sum of difference...
I'm trying to find the algorithm efficiently solving this problem:Given an unsorted array of numbers, you need to divide it into several subarrays of length from a to b, so that the sum of differences...
View ArticleAppend new row if value doesnt exist by grouping columns [duplicate]
I want to by grouping year and month, every year and month have all distinct account and if that account doest exist in that year and month, the value will be 0.How should I solve this?
View ArticleHow to add varied heights to each treeview in tkinter ttkbootstrap?
i need to set heights for each table seperately as they are not sames = ttk.Style()s.configure('Treeview', rowheight=40)table1 = ttk.Treeview(home_frame, style="mystyle.Treeview", columns=("Name"),...
View ArticleGeneric[T] classmethod implicit type retrieval in Python 3.12
I would like to use the new Python 3.12 generic type signature syntax to know the type of an about-to-be-instantiated class within the classmethod of that class.For example, I would like to print the...
View ArticleHow to link a 2D map from the game to the program
There is a 2d card consisting of several colors. The red dot on the map is the person with the direction. It is necessary that the person moves only along a certain color (in this example, only along...
View ArticleNumpy Array to Complex Number in Python
In python I load a file of data from a SDR (Software Defined Radio) using rtl_sdr which is stored as uint8. The data seems to be 0-255 values.It wants to be 0 centred with min -1 and max 1 and stored...
View ArticleModuleNotFoundError: No module named 'pyLWE'
this is the exact error when I run the code'''from pyLWE import *'''ModuleNotFoundError: No module named 'pyLWE'My Python program is throwing the following error:ModuleNotFoundError: No module named...
View ArticlePython: Elegent way to get an iterable of all parents in a path
Working with a path-based resource system, the application needs to find the first working resource that manages a given resource based on paths. I need a succinct, pythonic way to generate the...
View ArticleI am facing a run time error "too many values to unpack" [closed]
ValueError: Caught ValueError in DataLoader worker process 0.Original Traceback (most recent call last): File "/opt/conda/lib/python3.10/site-packages/torch/utils/data/_utils/worker.py", line 308, in...
View Article