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 @@ -89,6 +89,11 @@ src/
├── chapter_23/ # Security and Cryptography
├── chapter_24/ # Metaprogramming
├── chapter_25/ # Python Ecosystem and Best Practices
├── chapter_26/ # Async Programming
├── chapter_27/ # Multiprocessing and Parallelism
├── chapter_28/ # Command-Line Interfaces
├── chapter_29/ # Date, Time, and Scheduling
├── chapter_30/ # XML, HTML, and Data Formats
└── ...
tests/
├── conftest.py # Shared pytest fixtures
Expand Down Expand Up @@ -126,6 +131,11 @@ tests/
| 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 |
| 26 | Async Programming | asyncio, async/await, tasks, gather, semaphores | Done |
| 27 | Multiprocessing and Parallelism | multiprocessing, Pool, ProcessPoolExecutor, IPC | Done |
| 28 | Command-Line Interfaces | argparse, subcommands, environment variables | Done |
| 29 | Date, Time, and Scheduling | datetime, zoneinfo, timedelta, calendar, formatting | Done |
| 30 | XML, HTML, and Data Formats | xml.etree, html.parser, configparser, struct | Done |

## Running Notebooks

Expand Down
Loading