👉 Get Started with DataImpulse for $1 per 1GB - bit.ly/3zVP8Oo
@DavidSitienei-oi4sd3 ай бұрын
Hello I love your content, keep bringing us project based content
@siyabonganxumalo45743 ай бұрын
Great video.
@v4ssili3 ай бұрын
I always wondered about the naming of the beautiful soup package. This might be a big stretch, but when you translate it to german you get "schöne Suppe" which incidentally almost sounds like the french "je ne sais pas", meaning "I don't know" :D
@collected_trading2 ай бұрын
Tag soup?
@snehabehera13872 ай бұрын
which code editor is this?
@dzfeverframe67873 ай бұрын
Where the project is attached ? I can't find it 😅
@InternetMadeCoder3 ай бұрын
Sorry, I had forgot the link, here it is github.com/tuomaskivioja/apartmentFinder
@joejoy89583 ай бұрын
I want to login to my yahoo finance portfolio and get daily report.. how can I do this?. Is there a way to automate this at a specific time .., say when market closes daily.?
@siyabonganxumalo45743 ай бұрын
import yfinance as yf # Define the ticker symbol for the S&P 500 ticker_symbol = '^GSPC' # Fetch the maximum available historical data sp500_data = yf.download(ticker_symbol) # Save to CSV sp500_data.to_csv('sp500_max_data.csv') print("Data saved to sp500_max_data.csv")
@NavalEngineerExplains3 ай бұрын
That would be aweasome. I need it too
@brandonscott30123 ай бұрын
I believe they have an API for that. So you can use that. Not sure of the details though.
@InternetMadeCoder3 ай бұрын
See if Yahoo has an API to do that, doing it via web scraping would be tricky due to the need to log in