Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@ src/
├── chapter_18/ # Database Access
├── chapter_19/ # Packaging and Distribution
├── chapter_20/ # Python Internals and Performance
├── chapter_21/ # Logging and Debugging
├── chapter_22/ # Web Development Fundamentals
├── chapter_23/ # Security and Cryptography
├── chapter_24/ # Metaprogramming
├── chapter_25/ # Python Ecosystem and Best Practices
└── ...
tests/
├── conftest.py # Shared pytest fixtures
Expand Down Expand Up @@ -116,6 +121,11 @@ tests/
| 18 | Database Access | sqlite3, DB-API, transactions, row factories | Done |
| 19 | Packaging and Distribution | venv, pyproject.toml, wheels, entry points, PyPI | Done |
| 20 | Python Internals and Performance | Memory model, GIL, profiling, bytecode, optimization | Done |
| 21 | Logging and Debugging | logging module, handlers, formatters, pdb, traceback | Done |
| 22 | Web Development Fundamentals | WSGI, HTTP servers, routing, templates, REST APIs | Done |
| 23 | Security and Cryptography | hashlib, hmac, secrets, input validation, secure coding | Done |
| 24 | Metaprogramming | Dynamic attributes, class decorators, introspection, codegen | Done |
| 25 | Python Ecosystem and Best Practices | Code style, linting, testing patterns, CI/CD, project org | Done |

## Running Notebooks

Expand Down
Loading