DHI / DHI/python-package-development

Clarify benefits of factory methods in Module 2

Open
#31 0 comments 0 reactions 0 assignees View on GitHub
Dominant language
Jupyter Notebook
Stars
8
Forks
1
Avg merge
4m
Merged PRs (30d)
1

Description

The static methods section in Module 2 shows *how* to create factory methods but could better explain *when and why* to use them.

## Current state
The notes mention it's "less cumbersome" to create instances, but the pedagogical value could be stronger.

## Suggested improvements

1. **Name the pattern** - Use the term "factory method" or "alternative constructor" so students can recognize and search for it

2. **Explain the "why"** - Python doesn't support multiple `__init__` signatures, so factory methods provide multiple construction paths with semantic clarity

3. **Add stdlib examples from datetime**:
- `datetime.fromtimestamp()`
- `datetime.fromisoformat()`
- `date.fromordinal()`

4. **Add examples from polars**:
- `pl.read_csv()`, `pl.read_parquet()`, `pl.read_json()` (module-level factories)
- `DataFrame.to_dict()` → `pl.from_dict()` round-trip
- `pl.from_numpy()`, `pl.from_pandas()`

These examples show the pattern is pervasive in well-designed Python APIs.

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.