Gathering Related Functionality: Patterns for Clean API Design

2:00pm - 2:25pm on Friday, October 5 in Madison

Paul Ganssle

Audience Level:
Intermediate
Slides:
https://pganssle-talks.github.io/pygotham-2018-clean-apis
Watch:
https://youtu.be/nmoT-E8fi_8

Overview

This talk will arm you with some tools to design a library that “just works”, but also has obvious escape hatches to handle corner cases. It covers several patterns for cleanly organizing related and overlapping functionality in a way that satisfies both humans and static analysis tools.

Description

What do you do when you have to choose between designing your function for one of two common use cases?

How about when the same logical operations (say, multiplication or concatenation) need to have different implementations depending on the type of the arguments they are applied to?

These kinds of questions can be vexing when trying to design a clean, well-scoped API.

This talk will cover several strategies for grouping related functionality in a way that presents a logically clean interface to both humans and static analysis tools like type checkers and document generators.

This talk covers:

Want to edit this page?