Quantcast
Channel: Active questions tagged python - Stack Overflow

module 'numpy' has no attribute '_no_nep50_warning'

When load HuggingFaceEmbeddings, always shows error like below.---------------------------------------------------------------------------AttributeError Traceback (most recent call...

View Article


Run Ruff in Emacs

How can I run Ruff in Emacs? I need to enable 2 commands on the current buffer:ruff check --select ALL current_buffer→ bind to M-x ruff-checkruff check --select ALL --fix current_buffer→ bind to M-x...

View Article


Django error : django.core.exceptions.ImproperlyConfigured:

I get the following error all the time since two days now and i am stacked at this level.This the error:django.core.exceptions.ImproperlyConfigured: The included URLconf '<module 'pages.urls' from...

View Article

Why is data lost from slots? Rasa Open Source

I have a problem with slots in rasa open source version 3.6.9. After moving in my history, I see that the data of some slots is lost or set to None. I wonder if someone have had this inconvenient. How...

View Article

Custom colormap in matplotlib using LinearSegmentedColormap not working as...

I have a question about creating my custom colormap in Matplotlib. I start by initializing three colors to represent three points (nodes). Here is the minimal working example code:import numpy as...

View Article


sqlalchemy : inserting only a part of a row

I am new to sqlalchemy and run into a problem.I can't find a way to insert only a part of a new row.With the session.add() I can insert a row if I give all columns. But what if i only want to give some...

View Article

pprint(): how to use double quotes to display strings?

If I print a dictionary using pprint, it always wraps strings around single quotes ('):>>> from pprint import pprint>>> pprint({'AAA': 1, 'BBB': 2, 'CCC': 3}){'AAA': 1, 'BBB': 2,...

View Article

Why only one warning in a loop?

I want a warning raise for each problem detected in a loop, but the warning is only raised once, the first time. For example :import warningsfor i in range(10): print i warnings.warn('this is a warning...

View Article


How to flatten a mapping constructed from a tagged scalar using ruamel.yaml

My aim is to create a YAML loader that can construct mappings from tagged scalars.Here is a stripped-down version of the loader which constructs an object containing names from a scalar tagged...

View Article


Selenium returns null for title element despite correct CSS selector and...

I'm trying to scrape a title from a video page using the following CSS selector, but keep getting null values:#main_content > div > div.detail-content_wrap > div.detail_title_btn >...

View Article

Need help scraping FAA N Number database as I can't seem to communicate with...

Trying to pull data from FAA N Number results but request.get() doesn't seem to be working.I followed this tutorial (https://www.youtube.com/watch?v=QhD015WUMxE) and was able to scrape the website he...

View Article

How can I test my Django & React app with massive users efficiently?

I'm working on a Django backend and a React frontend, and I need to test my app with a large number of users.I have used Cypress for UI testing, but it takes too much time to complete the tests I need....

View Article

Image may be NSFW.
Clik here to view.

No installed app with label 'learning_logs' when migrating

I have made an app for a project in django and wrote a class in models.py .I have also included the name of the app in the list of INSTALLED_APPS in settings.py.After that, when I tried to make...

View Article


For image analysis on mac, how do I prevent this error: Python[19607:217577]...

For multiple image analysis projects in python, I keep getting these two errors below:Error 1: Python[19607:217577] +[IMKClient subclass]: chose IMKClient_LegacyError 2: Python[19607:217577]...

View Article

import numpy failed after upgrading MacOS to 15.4

After upgrading MacOS to 15.4. the import failed:Exception has occurred: ImportErrorError importing numpy: you should not try to import numpy fromits source directory; please exit the numpy source...

View Article


Python: Convert 2-digit / 4-digit year [duplicate]

I am trying to convert the date format '31-Dec-09' to '2009-12-31' in Python with the following code: df = ['19-Jan-19', '4-Jan-19'] f = [datetime.datetime.strptime(x,'%d-%mmm-%y').strftime('%Y-%m-%d')...

View Article

How can i center a button above the window in Python using only tkinter and...

When i tried to center my button, it didn't center perfectly above the window. I tried almost everything but it went to right or left, not in the middle of the window.I was expecting it to be placed in...

View Article


Python properties_json_file: Union[str, Path] = null why? [closed]

I'm working on my company project done by a coworker who is not on the company anymore. I'm trying to debug some things that don't work. I noticed that the function uses an file, which during the...

View Article

Time Series Forecasting Model with XGBoost and Dask Large Datasets Crashing

I'm building a time series forecasting model in Python to predict hourly kWh loads for different customer types at a utility company. The dataset contains ~81 million rows, with hourly load data for...

View Article

Creating Snowflake storage_integration

We are trying to create storage integration using python package, and in the below documentation I can see there's only mention of Managing catalog and notificationsintegration but no information on...

View Article

Gamma Function in Python

I'm fairly new to Python but would like to use Euler's Gamma Function in a function I am writing. I'd prefer not to write it as an integral and was wondering if there's something I can import that...

View Article


HTTP POST from Apps Script to Google Cloud Run Function

I'm quite a beginner in Google Cloud Platform, and I would like to solve the following:I want to send an HTTP POST request (with JSON data) to a Cloud Run Function using Apps Script, but I don't see...

View Article


Image may be NSFW.
Clik here to view.

How can I add an element directly under a specific column without inserting a...

I have two lists of same length. I'm iterating through them by using a while loop. One is for colleges (which has duplicates in it) and other is for the courses they offer. I want to add the colleges...

View Article

Image may be NSFW.
Clik here to view.

What can I do if installing Python bindings to ta-lib fails?

What can I do if installing Python bindings to ta-lib fails x86_64-linux-gnu-gcc -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-Bsymbolic-functions -g -fwrapv -O2...

View Article

Issues with Tensorflow and Tensorflow-io while training a CNN on Colab

I have been training some CNNs on Colab by Tensorflow and Tensorflow-io since January. The training of a model lasted more or less 30 mins till a couple of months ago. Now, since some weeks ago, after...

View Article


Image may be NSFW.
Clik here to view.

How do I modify a Matplotlib colorbar so the labels are integers?

I have a GeoDataFrame that I'm plotting in Matplotlib as a choropleth map.gdf.plot(ax = ax, column = 'column to color by', legend = True, legend_kwds={"label": "Label", "orientation": "horizontal",...

View Article

Concatenate rows for two columns in panda dataframe

I have the following dataframe:import pandas as pdd = {'Name': ['DataSource', 'DataSource'], 'DomainCode': ['Pr', 'Gov'], 'DomainName': ['Private', 'Government']}df = pd.DataFrame(data=d)So the...

View Article

How to define a Bash variable from Python EOF

I'm relatively new to Bash and unable to explain my problem in the title. I've done a lot of googling and I guess that's the title I came up with.I want to be able to use Python EOF and define a Bash...

View Article

Building a TensorFlow model using DiCE to generate counterfactuals

Im currently undertaking a project using the DiCE package used to generate counterfactuals. The dataset I am using is thishttps://archive.ics.uci.edu/dataset/144/statlog+german+credit+dataI have got it...

View Article



Does requests.codes.ok include a 304?

I have a program which uses the requests module to send a get request which (correctly) responds with a 304 "Not Modified". After making the request, I check to make sure response.status_code ==...

View Article


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>