Skip to content

Tag: python-3.x

Getting same result for different CSV files

DESCRIPTION: I have a piece of Python code, and this code takes a CSV file as input and produces a .player file as output. I’ve four different CSV files, hence, after running the code four times (taking each CSV file one by one), I’ve four .player files. REPOSITORY: https://github.com/divkrsh/grid…

Create dynamically insert into table in Python

i am trying to read from some db2 schema all the tables and for those tables to get their columns so i can create dynamically insert into statement My data is stored in a list in this format: where tableName is the name of the table in my schema. So far i read from db catalog all tables and their

Buildbot: worker is idle

I’ve noticed that the distribution of Builds between workers is sub-optimal, 80% of the time Builds are running on busy workers. If you have a look at the image, tmp_worker1 can process triggered_build_1, but instead, it’s idle!!! For some reason, triggered_build_1 is in acquiring a locked state a…

Extracting texts from Selenium WebElement

I’m trying to get all the names of the perfumes on this page But when I try to get the text of the web element attribute I get nothing. In fact, I tried en colaboratory: En media_content we have several elements: But this one does not return anything: I also tried using the xpath directly on one name I …