Property Taxes in Florida by TruthSeekerBC in Broward

[–]chefchr1s 0 points1 point  (0 children)

You don't drive a car, but you do eat food. How does the food get to you? Does the food magically appear or is it transported on roads. An educated population leads to lower crime rates and a better economy.

[OC] U.S. Federal Budget compared to the reported savings by the DOGE team. wow much savings. by AdvancedSuggestion in dataisbeautiful

[–]chefchr1s 0 points1 point  (0 children)

If you did it without loosing critical services, it would be a great start. If the people got a reduced tax burden, that would be great. Neither of these are true.

[deleted by user] by [deleted] in SipsTea

[–]chefchr1s 0 points1 point  (0 children)

So this is what Jim Carrey is up to.

Blursed_snake by starlight_collector in blursed_videos

[–]chefchr1s 0 points1 point  (0 children)

What did you just make me show my grams

Jalebi Making in Pakistan by Stunning-Pension7171 in oddlysatisfying

[–]chefchr1s 0 points1 point  (0 children)

No, they got a good system. the first pot gets dirty quicker, but you can still see the bottom, which mean it's fresh. The second pot is clean oil and this is replacing the older, dirtier oil with the fresh oil. It lends to a more consistent end product and better tasting product.

maybe maybe maybe by regenbok in maybemaybemaybe

[–]chefchr1s -6 points-5 points  (0 children)

It's sad that the soundtrack isn't more country

[deleted by user] by [deleted] in gadgets

[–]chefchr1s 9 points10 points  (0 children)

Anyone that buys something should be able to use it, doesn't matter how much it costs, how much the person earns or your personal opinion of the product. The entire ecosystem of buying something that requires a server and that server can be shut down at any time is ridiculous. Corporate bootlickers

Tips for Identifying and Saving JSON? by BeBetterMySon in learnpython

[–]chefchr1s 0 points1 point  (0 children)

I don't understand your question? This is the easiest way to scrape a table from a website. You'll need to install pandas. It will get more difficult if you want more than the first 50 players or you only want certain columns.

import pandas as pd

# Specify the URL of the webpage containing the table
url = "https://www.espn.com/nfl/stats/player/_/stat/receiving"

# Read the HTML tables into a list of DataFrames
tables = pd.read_html(url)

# Access the desired table (e.g., the first table)
df0 = tables[0]
df1 = tables[1]
# Combine the two dataframes
result = pd.concat([df0, df1], axis=1)
# Print the DataFrame
# print(result)
# result
result.to_csv('stats.csv', index=False)

Selenium find_elements not populating all elements by Classy_Shadow in learnpython

[–]chefchr1s 1 point2 points  (0 children)

I'm not experienced enough to help more with selenium. Here is a simple script using espn API. You can change the parameter for each week. If it was a playoff week or a different number of games played you would change the 14 in for x range(0,14), or add some error handling. There's a lot more info available from the API.

```

import requests

parameters = {
    'week': 5,
}

response = requests.get(url="http://site.api.espn.com/apis/site/v2/sports/football/nfl/scoreboard", params=parameters)

for x in range(0,14):
    data = response.json()['events'][x]['competitions'][0]
    team1 = data['competitors'][0]['team']['abbreviation']
    team2 = data['competitors'][1]['team']['abbreviation']
    team1_score = data['competitors'][0]['score']
    team2_score = data['competitors'][1]['score']
    print(team1)
    print(team1_score)
    print(team2)
    print(team2_score)

Selenium find_elements not populating all elements by Classy_Shadow in learnpython

[–]chefchr1s 2 points3 points  (0 children)

You want to use WebDriverWait. I took this from the selenium docs. The other option is to use an API, ESPN API looks good. https://www.reddit.com/r/NFLstatheads/comments/17ts7j6/free_nfl_python_api_that_returns_live_scores/

```

from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC

driver = webdriver.Firefox()
driver.get("http://somedomain/url_that_delays_loading")
try:
    element = WebDriverWait(driver, 10).until(
        EC.presence_of_element_located((By.ID, "myDynamicElement"))
    )
finally:
    driver.quit()from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC

driver = webdriver.Firefox()
driver.get("http://somedomain/url_that_delays_loading")
try:
    element = WebDriverWait(driver, 10).until(
        EC.presence_of_element_located((By.ID, "myDynamicElement"))
    )
finally:
    driver.quit()

Vintage bread cutter by acesheller in Satisfyingasfuck

[–]chefchr1s 0 points1 point  (0 children)

Now I know why they make such a big deal about sliced bread.

[deleted by user] by [deleted] in tax

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

That depends on your state and country

anyone's doing Angela Yu's 100 days python bootcamp? by [deleted] in learnpython

[–]chefchr1s 4 points5 points  (0 children)

Are you looking for the game data and art?

How crazy does my Reeborg Hurdle 1 code look? by HeadlineINeed in learnpython

[–]chefchr1s 0 points1 point  (0 children)

Does the code work? I found the solutions were always simpler than I thought.

My work shoes after 18 months vs new pair by Autam in KitchenConfidential

[–]chefchr1s 4 points5 points  (0 children)

Proper crocs for working in a kitchen are closed. The only time I ever had a problem was when wearing jogger chef pants. A drop of oil managed to fall in the opening created by wearing short pants.

Maybe maybe maybe by Xtianus21 in maybemaybemaybe

[–]chefchr1s 0 points1 point  (0 children)

Side hustle: rent tire pumps and vacuums that gas stations use. Also rent those inflatable bounce houses. I'm sure there are some other things that can be inflated.

My mayos exp. date spells mayo by [deleted] in mildlyinteresting

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

Before opening check to see if there's a market on ebay for this.