
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
github.com/we-be/tiny-ria/quotron/api-scraper
A Go-based client for fetching financial data from various financial APIs.
The API scraper supports Alpha Vantage endpoints for:
Note: Alpha Vantage has rate limits:
The API scraper now supports Yahoo Finance as an alternative:
Build the binary:
make build # or: go build -o api-scraper ./cmd/main
Run with an Alpha Vantage API key:
./api-scraper --api-key YOUR_API_KEY --symbol AAPL
Run with Yahoo Finance (no API key needed):
./api-scraper --yahoo --symbol AAPL
The API scraper works with the Quotron storage pipeline:
To manually process data files:
cd ../ingest-pipeline
python cli.py mixed path/to/data.json --source api-scraper --allow-old-data
For JSON output with any provider:
./api-scraper --yahoo --symbol AAPL --json
You can set the Alpha Vantage API key with an environment variable:
export ALPHA_VANTAGE_API_KEY=YOUR_API_KEY
./api-scraper --symbol AAPL
The Yahoo Finance proxy requires Python 3 with yfinance:
python3 -m venv .venv
source .venv/bin/activate
pip install -r scripts/requirements.txt
The proxy server will automatically start and stop when using the --yahoo
flag.
This component is automatically tested via GitHub Actions:
quotron/api-scraper
directoryThe workflow file is at .github/workflows/api-scraper-tests.yml
Run the integration tests locally:
cd /quotron
ALPHA_VANTAGE_API_KEY=YOUR_API_KEY python tests/integration/test_integration.py --api
FAQs
Unknown package
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.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.