Implement DNS in a weekend¶ Hello! Our goal here is to implement a toy DNS resolver. What’s a DNS resolver? It’s a program that knows how to figure out what the IP address for a domain is. Here’s what the command line interface of the resolver we’re going to write looks like: The whole thing is about 200 lines of Python, including implementing all of the binary DNS parsing from scratch. This proje