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 @@ -94,6 +94,11 @@ src/
├── chapter_28/ # Command-Line Interfaces
├── chapter_29/ # Date, Time, and Scheduling
├── chapter_30/ # XML, HTML, and Data Formats
├── chapter_31/ # String Methods and Formatting
├── chapter_32/ # Numeric Computing
├── chapter_33/ # OS and System Interaction
├── chapter_34/ # Email and Data Encoding
├── chapter_35/ # Advanced Python Patterns
└── ...
tests/
├── conftest.py # Shared pytest fixtures
Expand Down Expand Up @@ -136,6 +141,11 @@ tests/
| 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 |
| 31 | String Methods and Formatting | f-strings, str methods, string module, difflib, textwrap | Done |
| 32 | Numeric Computing | math, decimal, fractions, random, statistics | Done |
| 33 | OS and System Interaction | os, shutil, tempfile, platform, subprocess | Done |
| 34 | Email and Data Encoding | email.message, base64, quopri, mimetypes, binascii | Done |
| 35 | Advanced Python Patterns | Descriptors, `__slots__`, weakrefs, ABCs, copy protocol | Done |

## Running Notebooks

Expand Down
Loading