I'm getting an error using Tequila API (error 403). How can I remedy this?
I've been trying to get Tequila API working for a project, and I'm running into a 403 error.requests.exceptions.HTTPError: 403 Client Error: Forbidden for url:...
View ArticleExtract substrings from dataframe column, insert into new column as integers
I have a dataframe, 'sp', with a column, 'RouteIdentifier', which contains a state route and additional noise. I want to get the numerical substring from each row, preferably without leading 0s, and...
View ArticleHow to send an image or matrix (gray scale) in a request Python-C#?
I have a Python API interfacing with a C# application. The C# component transmits an image to the API, which undergoes byte conversion followed by base64 encoding to facilitate transmission within a...
View ArticlePhoto won't load on canvas
I wrote this code as part of a bigger code but the arrow image won't show when I run the bigger program. However, if I run just my code (not the other code) it works just fine.class Rating(tk.Tk): def...
View ArticleHow do I extract the data from the response.json output from an API call?
I looped through a json file and then used the corresponding data taken from the json file to obtain phone numbers using a skip tracing API. I have the response.json printed out after making the API...
View ArticleDiscord bot can't send messages from the server but sends messages from dm
I have made one discord bot in the past it work perfectly but when I tried makeing another just like that it don't work it doesn't respond to my messages in the server but it respond in the private dms...
View ArticleHow to read seven segment display and logos in images using Python?
I have a bunch of photos of energy meters. In every photo there is info written on the meter and also a seven segment display which has reading in kWh. Also, there is logo of meter manufacturer. I want...
View ArticlePython pydub issue: Can't repoen a wav file after it as been reencoded by ffpeg
I have a python script that reads in all the *.wav files in a directory and saves them in a folder called output after it adjusts their volume.lower.py:import osfrom pydub import AudioSegment as ass#...
View ArticleVSCode Pylance highlighting not showing when there is too many files
This is current setting.JSON{"remote.autoForwardPortsSource": "output","python.analysis.completeFunctionParens": true,"python.languageServer": "Pylance","python.analysis.diagnosticMode":...
View Articlelist filtering with regex not working in jupyter?
These lines of code work fine in the python interpreter (ran within PyCharm)test = ["text.txt", "text.png", "moretext.txt", "text.pdf"]p = re.compile(r'.*\.txt$')filtered= list(filter(p.match,...
View ArticleHow to make a custom type inheriting from UUID work as a pydantic model
in our codebase we are using a custom UUID class. This is a simplified version of it:class ID(uuid.UUID): def __init__(self, *args: Any, **kwargs: Any): super().__init__(*args, **kwargs)We cannot...
View ArticlePython time.time in string
I want only the first part of a unix timestamp in this format1714197412.2837634I want only the numbers before the ".", or just 1714197412.My script is importing "time" and I try this...
View ArticleLSTM model, using SHAP to explain a prediction
I am using LSTM model to detect anomalies in the network, namely DDOS attacks.I have trained the model on a dataset. The model is working and I am getting correct answers from it. But I can't get the...
View Articlepython argparse print usage text after description
Is there a way to print usage text after the description text with python argparse? I have my cmd line argparse working, but i would like to print version info before usage info.Edit:version: 1.0usage:...
View ArticleOptimizing a function with linear constraints containing a singular matrix,...
I'm working with traffic data to try the reconstruct the origin-destination matrix of a region, based on the article Bell1983.Basically, for each pair of locations, we need to get how many vehicles...
View ArticleI need a python code for the following, my teacher has not passed [closed]
Write a program that returns the first and last letters of any word, and theprint on screen.I need guidance to be able to use a code correctly or a code that allows me to develop what is requested in a...
View ArticlePython __main__.py cannot import from its own module
I have a flask web application, but I get a module not found error when I am importing modules from my own app:Traceback (most recent call last): File "<frozen runpy>", line 198, in...
View ArticleHow to accept both integer and float values as input?
How do I get python to accept both integer and float?This is how I did it:def aud_brl(amount,From,to): ER = 0.42108 if amount == int: if From.strip() == 'aud' and to.strip() == 'brl': ab =...
View ArticleWhy isn't the backpropagation in my neural network correctly making it learn?
I have to code a neural network from scratch, using only numpy external library. I have as input data images that I turn into a 4200-length vector of binary data, and a label of whether or not it is a...
View ArticleProfile Picture Not Showing
I am able to upload a profile picture and it goes to the database. I have a "print(profile.profile_picture)" in my views.py that will correctly print the current profile picture in the console when I...
View Article