2,209,291 questions
-2
votes
0
answers
22
views
How should I approach my CSV cleaning project for my OCBC bank statements? [closed]
I am new to programming, and I am trying to start a project on cleaning my CSV file into different formats that I want. How should I go about doing that, and what resources can I use to do it?
1
vote
1
answer
26
views
How can I update a text name on a label on Tkinter:
I want that when I upload a file, the label changes its name to file name to filename name.
#File class
class File:
def __init__(self):
self.filename = None
def getFile(self):
...
0
votes
0
answers
31
views
Why are rows returned as stale when fetching TimeSeries data with multiple sequential queries on the same RowSet?
I’m using GridDB Cloud with the Python client (griddb_python) and found a reproducible issue where executing multiple sequential queries on a TimeSeries container causes the second query to return ...
2
votes
1
answer
40
views
Why does a nearest join_asof() return exact matches despite allow_exact_matches=False?
I am looking for the nearest non exact match on the dates column:
import polars as pl
df = pl.from_repr("""
┌─────┬────────────┐
│ uid ┆ dates │
│ --- ┆ --- │
│ i64 ┆ date ...
-3
votes
0
answers
33
views
What are the best ways to enhance the Python code of a Scrapy spider? [closed]
I want to enhance the following Python code so that it can print the transcript completely, and without extra spaces.
def parse_item(self, response):
# Getting the article box that ...
Advice
0
votes
0
replies
12
views
How do I list all tags for a Docker image in a private registry using existing Docker CLI credentials
Similar to How can I list all tags for a Docker image on a remote registry? but I am asking specifically how to do it using existing Docker credentials (i.e. I already did docker login private.repo)
...
-1
votes
1
answer
36
views
My Code With Openrouter api is not working
I'm trying to automate intraday financial analysis using OpenRouter's free models. My Python script rotates through several LLM endpoints, sending a prompt about a stock's symbol, change, and closing ...
0
votes
0
answers
48
views
Running a tool with uvx from a private repo using an access token
I want to frequently test a Python application I'm developing with uv, which I publish to a private repository on a GitLab instance. I've generated an access token with read access to the repo and I ...
