How can I change character in string?
I have strings:11QJB10(11|12.13|14)AA001|11QJB11|(12|13|14)AA00212KAC31(32)AA001|003|12KAC33(34)AA001I need to change symbol '|' before 11QJB or 12KAC to '@'I do:code =...
View ArticleHow can I represent an infinite number in Python?
How can I represent an infinite number in python? No matter which number you enter in the program, no number should be greater than this representation of infinity.
View Articleproblem with download method with mega.py library
this code give me a ENOENT, Object (typically, node or user) not foundbut in my mega root folder (cloud drives) i have all of this filesimport osfrom mega import Mega#from base64 import b64decodeEMAIL...
View ArticleHow to display variable JSON data from python in HTML
I've been working on a playlist manager for Spotify using their API. Right now I have a python script that gets the data from the API and returns a json file, but i would like to import the data into a...
View Articlessl.SSLCertVerificationError: [SSL: CERTIFICATE_VERIFY_FAILED] certificate...
producer = KafkaProducer( bootstrap_servers='kafka.XXXX.dev:9093', security_protocol='SASL_SSL', sasl_mechanism='PLAIN', sasl_plain_username=sasl_plain_username,...
View ArticleHow to install python-opencv in amazon-sagemaker?
I installed the OpenCV package by pip install opencv-python.When I import cv2 in my code.import cv2I got the following...
View ArticleTry solving Google Captcha
First off, excuse me, I'm still learningHow he solved the captcha in this video starting at second 27https://youtu.be/0h504QFDyxc?si=RckXYelnrvWyWHFAEvery time I solve the captcha on this site, it...
View ArticleOnly first elif statement triggering
This code below works as intended for the if and first elif statement. But if I try and trigger the statements below Python doesn't return anything at all, not even an error code.score = input ('Please...
View ArticleHow to query a JSONField comprising a list of values in DJANGO
I am using JSONField to store the configuration parameter(user_types) as a list as follows:["user_type1", "user_type2", "user_type3"]How to query to filter elements of type "user_type1"? The following...
View ArticlePyAudio stream delays in callbacks (frames dropped)
I am trying to use PyAudio in Python for real-time audio processing. I use some standard code for non-blocking streaming using a callback function. However, I notice that there is a delay between the...
View ArticlePassing a numpy array to C function through ctypes gives wrong results if the...
Consider this simple C source code which computes the mean of an array of int, stores it in a structure and returns an error code:#include <stdio.h>enum errors { NO_ERRORS, EMPTY_ARRAY};struct...
View ArticleParsing google sheet with colors
Is there any ways to read colors from cells in google sheet without using google API?API has limits and my sheet is around 200x400 size, it'll take years to parse...To read and parse values i used...
View ArticlePython and telethon module get error AuthKeyUnregisteredError
I made a bot that monitors 4 news channels, and when the necessary words come across in messages, it sends them to me on the social network in private messages. Everything works fine - on my computer....
View ArticleSCP comand over SSH tunnel
I need to SSH to a machineIssue the SCP command, provide password and check its status.Manually:[akshjosh@sjc-ads-2499 ~]$ scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null...
View ArticleCreating tables on Heroku server with FastAPI and SQLModel, Alembic and pgasync
I have seen simillar question asked herebut that didn answer my issue unfortunately. Im trying to update DATABASE_URL in my db.py file like thisDATABASE_URL =...
View ArticleCollisions for Simple Dungeon Crawler Game
I am creating a simple dungeon crawler game that has collisions. The code for the Enemy class is such that it should collide with walls and chase after the player character, however it does not chases...
View Articlewhich DataIdentifier (DID) I need to get the voltage from ECU?
I use IsoTPSocketConnection of UDS protocol, I want to get the voltage from the vehicleת I wrote (I show part of the code):with Client(conn, request_timeout=2, config=config) as client: response =...
View ArticleHow to get an index of max value element from a list column in python polars?
I have a data frame:pl.DataFrame({'no_of_docs':[[9,4,2], [3,9,1,10], [10,3,2,1], [10,30], [1,2,3,6,4,5]]})Here the column: no_of_docs is a list[int] type one: i would like to add a new column with the...
View ArticleThreaded Flask app gives OSError: [Errno 98] Address already in use in...
I am starting my Flask app in the thread and when I test it in local environment it works perfectly but whenever I run on Jenkins it gives an already in use error.Here is my main test application to...
View ArticleDjango Channels group send only sends the message to last channel
I'm working on django channels-3.0.3, the group_send only sends my message to the last connected channel to the connected users times.settings...INSTALLED_APPS =...
View Article