
Research
/Security News
npm Author Qix Compromised via Phishing Email in Major Supply Chain Attack
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
Extension of yfinance package to download wide-form stock data from Yahoo! Finance
Note: currently being refactored to use Spark DataFrame instead of pandas to perform transformations.
yfinance-extended
extends yfinance
package by Ran Aroussi and make it easier to:
pandas
dataframe;Getting past five days of minute-by-minute prices of Apple, Inc., including pre-/post-market data.
import yfinance_extended as yfe
aapl = yfe.StockSymbols(symbols="AAPL")
aapl_price_df = get_historical_prices(aapl, period="5d", interval="1m", prepost=True)
symbols = yfe.StockSymbols(symbols=["AAPL", "GOOGL"])
prices_df = get_historical_prices(symbols, period="5d", interval="1m", prepost=True)
aapl = yfe.StockSymbols(symbols="AAPL")
options_df = yfe.get_live_options(aapl)
aapl = yfe.StockSymbols(symbols="AAPL")
aapl_price_df = yfe.get_live_quote(aapl)
live_prices_df = loader.get_prices(["AAPL", "GOOGL"])
Alternatively, if you wish to save all data into one file:
# Write to one file
yfe.to_parquet(prices_df, filepath="./data/datafile.parquet")
# Read from the file
prices_df = yfe.read_parquet(filepath="./data/datafile.parquet")
FAQs
Extension of yfinance package to download wide-form stock data from Yahoo! Finance
We found that yfinance-extended demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.