finding the longest and shortest sequences with a common prefix in a...
Given a collection of sequences, how do you filter them down to those that are the longest, or alternatively, the shortest given they have a common prefix? So given this collection of sequences: "a b c...
View ArticleHow can I convert a Python multithreaded socket client/server to asyncio?
I'm writing a tool to test an asyncio based server end-to-end. Initially I was going to spin up the server in one terminal window, and run the test in a separate window, but then I realized that it...
View ArticleHow to extract a filename from a URL & some extra data attached to it?
I'm trying to extract the filename from a download URL that not only end with the filename itself but an extra data is attached to the URL after the...
View Articlepatool gives these errors when compiling
When I compile my code into an exe it gives me these errors.I need to fix this so that my exe works. As I understand it is from the Patool library but I can't get anything to solve it. My code works...
View ArticleGenerating conversations in Gemini-Pro
I aim to develop a question answering system using Gemini. The question generator will prompt 10 general questions regarding the weather in various countries, while the answer generator will...
View ArticleRemoving digits from each line of a file
I wish to write a code in Python which reads each line from a txt and whilst doing so takes each digit from that sentence and stores it in an array. Simultaneously, takes that new word and stores that...
View ArticleI got problems with HLISA drag and drop
I'm using HLISA and undetected_chrome for captcha cracker bot but drag_and_drop function doesn't work or I don't actually know what is the problem here:stat = self.custom_selector(400,...
View ArticlePip not installing module
I reinstalled python to get 3.12, and now none of my modules are being installed. E.g., I will install pygame bypip install pygameand it will be fine.Then if I try to use the module or even uninstall...
View ArticleHave to run python manage.py collectstatic everytime I make change in my...
I am creating a Django application and right now it's in development phase. I am using Google Cloud Storage, so I have to change settings accordingly, but after that I have to always runpython...
View ArticleTimeout error function craftin to treat functions that takes too long
guysIm trying to create a time out error, because some function take too long for certains attributes, and i want to skip these timely expensive ones:exemple to clarify:.try:Timeout_fct(...
View Articleperiodically do work or exit in python coroutine/task
Completely new to python. I wanna write a simple async function that does a ps $pid every N seconds until it receives a stop signal.i.e in go it'd simply be:go func(cancelCtx context.Context) { ticker,...
View ArticleConcatenate the rows of each column being grouped by identify
Welcome Help.I would like to merge multiple rows of each ID of a dataframe into a single cell, Below is input format:enter image description hereI have the following list of columns and Dataframe in...
View ArticleApproximating a functions area in an interval
I am trying to approximate an area for a function f within an interval [a, b] using N + 1 equally spaced points.a and b should be inputted with type int or float, N should be input with type int, and f...
View ArticleExport and merge annotations from a PDF to another PDF
I'm looking for a way to export the annotation layer of a PDF and merge it back in another PDF. I've tried using libraries like poppler and PyPDF2 but nothing worked so far.Are there any open-source...
View ArticleCloudFlare token gets permission denied error
I have issued a personal access token.Its scopes are:Account --> ZeroTrust --> EditAccount --> ZeroTrust --> ReadI then want to fetch the routes for my ZT configuration using python as...
View ArticleHow to make a window fullscreen in customtkinter?
Tkinter has this method:window_name.attributes('-fullscreen',True)and customtkinter?I haven't found anything butgeometry(f"{WIDTH}x{HEIGHT}")However when I grab screen size and put as WIDTH &...
View ArticleExtracting values from dataframe unintentionally adds index value
I'm trying to create a function in Python that uses dataframes from two other CSV files to determine population.My Python file looks like this:import numpy as npimport pandas as pddf =...
View ArticleRemove the garbage words from the pdf
I am extracting the pdf to text using python and libraries like, fitz, pdfreader and so on. But in my pdf, there are some schematics and words I do not need on it.Here is an example.When extracting the...
View ArticlePython files to an MSI Windows installer
So I can use PyInstaller to make a one-file executable and to make a standard executable among other files in a folder.But how do I turn Python files into an MSI installer so that it's fool-proof where...
View ArticleDifferentiate between optional and mandatory in Pythons argparse
I am a bit confused with argparse but using it for years. Let's see this example:$ ./argpars_debug.py foo --helpusage: argpars_debug.py [-h] [-d] [--version] inputpositional arguments: inputoptions:...
View Article