Skip to main content

Question list filters

Filter by
Sorted by
Tagged with
Score of -4
0 answers
99 views

How can you implement password change for an iCloud/Apple ID account? There are many libraries for authorization, 2FA, LostMode. But I haven’t found a single API for password change at all. ...
Score of -4
0 answers
56 views

I have this application on Tkinter, based on this example. The problem is that when press the stop button on the PyScripter IDE, the application shows the flag changes from FALSE to TRUE only for one ...
Score of 1
0 answers
45 views

Is it possible to express n-ary vmap, where a function is mapped over a common dimension of multiple args (e.g. ([a], [b]) -> [c] becomes ([n, a], [n, b]) -> [n, c]), purely in terms of unary ...
Score of 2
1 answer
119 views

If I have a dictionary which contains other dictionaries, and I change these inner dictionaries in thread, is it safe (since they are different objects) or not? Example: data = { 'a': {'c': 5, 'd': 6},...
Score of 2
1 answer
170 views

I have a multithreaded Python application where two threads occasionally produce an unexpected result when accessing shared state. The strange part is that adding a simple logging statement appears to ...
Score of 3
1 answer
80 views

I have a Python class that has a QtNetwork.QTcpSocket that gets closed when the peer disconnects: class LocalSocket: def __init__(self, *, handler, host, port, kind, request): self....
Score of -2
1 answer
91 views

I have a Databricks notebook that currently uses pyodbc to connect to SQL Server and execute stored procedures. I need to migrate this notebook to Databricks Serverless Compute, so I am looking for an ...
Score of 0
1 answer
123 views

I'm making a Python physics engine just to get to understand the basics and I can't seem to bring the value of a local variable defined in child class NewtonianMechanics to its child ...
Score of -1
1 answer
98 views

I'm writing a small Python script to pull hourly BTC candles and log them to CSV. The timestamps come back as Unix epoch in UTC, but when I convert them for display they're 7 hours behind my actual ...
Score of 0
2 answers
102 views

I am working with huge matrix of small numbers using numpy and getting the following error: MemoryError: Unable to allocate 9.72 TiB for an array with shape (3268760, 3268760) )data type uint8" ...
Score of 0
0 answers
89 views

I want to get static type checking to work with a generic class where the type parameters are partially constrained, like so: from typing import Literal, Type, overload class Base: pass class ...
Score of 3
2 answers
150 views

I have a DataFrame "A" containing the results of searching a database of test data such that: TEST RECORDING FILENAME 0 1 1 qwer.xlsx 1 1 2 asdf.xlsx 2 2 ...
Score of -4
2 answers
107 views

I've received the error "**pydantic_core.\_pydantic_core.ValidationError**: 1 validation error for ChatGroq groq_api_key Input should be a valid string \[type=string_type, input_value=\<groq....
Score of -3
1 answer
167 views

We have a few links to Stack Overflow answers in our docs, in case users want to know more about how a certain tool works. During CI/CD, there is a (Sphinx) linkcheck job to make sure all the links in ...
Score of -3
1 answer
90 views

I'm using FastAPI for my backend and I already have /login and /logout endpoints for my frontend to talk to and I'm also using fastapi's OAuth2PasswordBearer (that points to a debug endpoint) to use ...

15 30 50 per page
1
2 3 4 5
147002