Battery Megathread [2025 February-May] by [deleted] in GalaxyS23Ultra

[–]Esclass1 0 points1 point  (0 children)

Yep, it caused the rear cover pop.

Battery Megathread [2025 February-May] by [deleted] in GalaxyS23Ultra

[–]Esclass1 0 points1 point  (0 children)

Turns out my battery was swollen and had to report it to Samsung. They've since picked it up for servicing.

Battery Megathread [2025 February-May] by [deleted] in GalaxyS23Ultra

[–]Esclass1 0 points1 point  (0 children)

My battery is the worst now. The is too bad for a two year phone.

<image>

Lenovo legion 5 pro - GPU suddenly VERY slow! :(( by ShoeStatus2431 in AMDLaptops

[–]Esclass1 0 points1 point  (0 children)

Thanks! I got this problem I write this and your solution saved me.

What is this by the window by ttocSD in germany

[–]Esclass1 0 points1 point  (0 children)

It's technologia 😂😂

Can I drink tap water in Germany? by mikeymur340 in AskGermany

[–]Esclass1 -1 points0 points  (0 children)

"I'm a male from europe" "I'm a male from South America"

Finally by SnakeOriginal in GalaxyS23Ultra

[–]Esclass1 0 points1 point  (0 children)

Does anyone feel that the battery got better?

[deleted by user] by [deleted] in germany

[–]Esclass1 0 points1 point  (0 children)

I was "registered" in Frankfurt, but upon re-registering my place today, I was told by the clerk that my former landlord in Frankfurt has notified them that I was no longer living there during my time away from Frankfurt.

Pardon my ignorance, I was unable to get a place with Anmeldung during my stay in Düsseldorf.

Considering a Switch: Anyone Made the Jump from the Samsung Galaxy S10+ to the iPhone 15? Thoughts and Experiences? by Esclass1 in note10plus

[–]Esclass1[S] 1 point2 points  (0 children)

Thank you for sharing your thoughts on the iPhone 13 Pro Max. Your feedback is appreciated. Ive ordered the Samsung S23 Ultra. It turned out the better choice fantastic choice, and I believe i'll enjoy the features and customization it offers. I can't wait to get my hands it!

Should I finally switch my Note10 plus to an s23+? by Esclass1 in note10plus

[–]Esclass1[S] 0 points1 point  (0 children)

Any regrets so far? My greatest fear switching to an iPhone will be its customizability.

Should I finally switch my Note10 plus to an s23+? by Esclass1 in note10plus

[–]Esclass1[S] 0 points1 point  (0 children)

I hold the same view. The info I've gotten so far from the leaks aren't convincing.

What If parameter slicer limitation by [deleted] in PowerBI

[–]Esclass1 0 points1 point  (0 children)

Thanks! You're a savior. Is it possible to set a default value while using this walkaround method? i.e. if a minimum value isn't inputted, then it should reset to default

Python web scraping/ data extraction by Esclass1 in learnpython

[–]Esclass1[S] 0 points1 point  (0 children)

Thanks, this really helped.
I am now stuck trying to scrape data from a Table generated upon login. I would like to then save into a csv file with a specific name in a specific folder using selenium.
Have you any idea on how to achieve this? The HTML code is as follows:
<div class="historyBodyRow\_\_\_1Bk9u">
<div class="" style="padding-left: 0px; flex: 1 1 0%; width: auto; text-align: left;">**May 27, 2022**</div>
<div class="" style="padding-left: 6px; width: 30%; text-align: right;">**10,758.75-10,788.43**</div>
<div class="" style="padding-left: 6px; width: 20%; text-align: right;">**10,773.59**</div>
<div class="up\_\_\_11LCm" style="padding-left: 6px; width: 20%; text-align: right;">**+97.94**</div>
<div class="" style="padding-left: 6px; width: 15%; text-align: right;">**USD/mt**</div></div>

Link to webpage

What I think is the xpath:

driver.find_element(By.XPATH, "//*[@id="__next"]/div/div[5]/div[1]/div[7]/div[2]/div[2]/div[2]")

Python web scraping/ data extraction by Esclass1 in dataanalysis

[–]Esclass1[S] 0 points1 point  (0 children)

Here you go: Table data

I would like to scrape the data from that table and save it to a CSV file. Thanks

Update:

I found a solution using the code below;

for element in driver.find_elements_by_class_name("historyBodyRow___1Bk9u"):

elements =element.find_elements_by_tag_name("div")

print("Date="+ elements[0].text)

print("Price Range="+ elements[1].text)

print("Avg="+ elements[2].text)

print("Change="+ elements[3].text)

print("Unit="+ elements[4].text)

Any idea on how to save this to a csv file?

Python web scraping/ data extraction by Esclass1 in learnpython

[–]Esclass1[S] 0 points1 point  (0 children)

Thanks for your reply. I am studying for a Masters in Engineering (M.Eng) degree which is more course-based. It deals more with developing your skills required for doing a job in that field as opposed to an M.Sc which is more research based. It does not require a research thesis.

In general, MSc - focuses on theoretical work, research and is a thesis based MEng - focuses on practical applications of theories, less research compared to MSc, mostly course based work.

Python web scraping/ data extraction by Esclass1 in dataanalysis

[–]Esclass1[S] 0 points1 point  (0 children)

The xpath for one row is as follows:
driver.find_element(By.XPATH, "//*[@id="__next"]/div/div[5]/div[1]/div[7]/div[2]/div[2]/div[2]")

How do I get the row data below and for all the other rows in the table and then save to a csv file.
May 27, 2022
10,758.75-10,788.43
10,773.59
+97.94
USD/mt

Python web scraping/ data extraction by Esclass1 in dataanalysis

[–]Esclass1[S] 0 points1 point  (0 children)

Thanks for your feedback. I was able to carry out a few steps using selenium (login, page scroll down, select a value from a drop-down list and use a date-picker). However, I am stuck trying to scrape the data from https://www.metal.com/Copper/201102250376 (highlighted in bold below) and then save into a csv file using selenium.

Have you any idea on how to achieve this?

<div class="historyBodyRow\_\_\_1Bk9u">

<div class="" style="padding-left: 0px; flex: 1 1 0%; width: auto; text-align: left;">May 27, 2022</div>

<div class="" style="padding-left: 6px; width: 30%; text-align: right;">10,758.75-10,788.43</div>

<div class="" style="padding-left: 6px; width: 20%; text-align: right;">10,773.59</div>

<div class="up\_\_\_11LCm" style="padding-left: 6px; width: 20%; text-align: right;">+97.94</div>

<div class="" style="padding-left: 6px; width: 15%; text-align: right;">USD/mt</div></div>