주식의 과거 데이터 수집, 그리고 일간 데이터 배치 파이프라인
Copy the environment template and configure your settings:
cp .env.example .env
# Edit .env with your actual configuration
Start PostgreSQL using Docker Compose:
docker-compose up -d
uv sync
uv run python load_delisted_data.py
- Always use
uv run python
to execute Python scripts - Use
polars
for data processing (not pandas)
- PostgreSQL runs on
localhost:5432
- Database:
market_data
- Use DataGrip or similar tools for data verification
src/
├── database/ # Database connection and models
├── models/ # SQLAlchemy models
└── ...
scripts/ # Data loading and processing scripts
MIT License