Category "python"

how to get the instance ids in a autoscaling group using AWS Lambda function Python

I'm new to coding I want to get the instance ids of an autoscaling group using AWS lambda function

How to insert a random element on a Anki card?

On Anki, the front of a card have "X+Y?" and the back shows "Z". For example, front "4+7?" and back "11" But I want next time that I see this card the numbers b

getting unexpected value error from the np.dot

in one of my functions, I called the diff() diffs = Tranche.diff(tranche_face, rate, new_rates) # class level method of diff inside Tranche class @classmet

Mapping 2D image onto 3D Scan Data

Given a 2D image of blade and its corresponding 3D Scan data in stl/ply/pcd format. Is it possible to map the 2D image onto the 3D scan data using python? Or is

Why is my python executable not able to create files but can access data on runtime?

A little bit of context: I have made a password manager in python I then packed it into a single executable using: pyinstaller --onefile password_manager.py Oka

Trying to get output of each layer while predicting test image, however getting an error Input tensors to a Functional must come from `tf.keras.Input`

I am trying to do Image Recognition in Python with TensorFlow and Keras. Please look at my code in the link below which I provided as I was facing another issue

translated the SNR calculation from MATLAB into the syntax of python

this is the MATLAB code which I would like to translate in Python. function [SNR] = bvpsnr(BVP, FS, HR, PlotTF) HR_F=HR/60; NyquistF = FS/2; FResBPM = 0.5; %res

Pyspark caches dataframe by default or not?

If i read a file in pyspark: Data = spark.read(file.csv) Then for the life of the spark session, the ‘data’ is available in memory,correct? So if i

Xcode swift iOS project gives "usr/bin/python no such file or directory" error when try to build project

I am experiencing the problem after the macOS 12.3 Monterey update. I get the following error when I want to run the project. There is a code looking for "/usr/

How to add hourly seasonality in facebook prophet in python

could you, please, help me: I don't know how to add hourly seasonality in Facebook Prophet in Python. I tried the following: m = Prophet( weekly_sea

Strange Plotly behaviour with Choropleth Mapbox

I want to create a choropleth map out of a GeoJSON file that looks like this: {"type": "FeatureCollection", "features": [ {'type': 'Feature', 'geometry': {'type

how to retrieve data from pandas

I am trying to retrieve the most recent data from the below results. The code I am running is: import datetime from Historic_Crypto import HistoricalData # Tim

Missing MapBox Token when using Apache Superset with Docker

I've installed Apache Superset according to this official manual. I can create plots, connect to databases etc. without any problems, only if I want to plot lat

Handle multiple request at same time on Flask web app

What I have: I've a Flask web app deployed to Heroku's server, which consists of only one web process app.py. Here it is: #importation from flask import Fla

how to check whether specific word are included in dictionary value - Python

I want to make a search program but i stuck in specific alogrithm. First, I will get any word from users Then check wheter user's words are included in any keyw

import in jupyter notebook to use a method from another file

I am using jupyter notebook. I have 3 jupyter source files written in python in a folder in the same directory: parser, preprocess, and temp. I am trying to imp

How to format a name

I'm taking a class on python and the lab assignment asks... Many documents use a specific format for a person's name. Write a program whose input is: firstName

Why python's logging module stopped working suddenly?

For years I have been working with python and running massive data processes that run for hours or days. So logging for me is critical. I have been using loggin

Finding percentage of rejection in pandas dataframe

I have a pandas data frame like given below Id1 YEAR CLAIM_STATUS no_of_claims 1 2019-01 4 1 1 2019-01 5 1

How do I download a file returned from FastAPI backend using Fetch API at the frontend?

This is my FastAPI(python) code, which returns a .ics file: @app.get("/latLong/") async def read_item(lat: float,long:float): mainFunc(lat,long) return