Why we switched from Python to Go

Switching to a new language is always a big step, especially when only one of your team members has prior experience with that language. Early this year, we switched Stream’s primary programming language from Python to Go. This post will explain some of t… Read more

Similar

Nice JSON pretty printing with Python

If you work with JSON regularly (90% of Python developers I suspect) you might appreciate the print_json function just landed in Rich v10.9.0 If you call this function with a string, Rich will decode the string, reformat it, and print it to the console wi... (more…)

Read more »

All of Python’s Grammar

This is the full Python grammar, derived directly from the grammar used to generate the CPython parser (see Grammar/python.gram). The version here omits details related to code generation and error... (more…)

Read more »