Code Snippets

Language: Python

SQLite with the sqlite3 Stdlib

Create a table, insert rows, and query with parameterized SQL.

Author: chris

Asyncio with aiohttp

Concurrent HTTP requests with asyncio.gather and aiohttp.

Author: chris

Walk a Directory Tree

Use os.walk to enumerate every file under a path.

Author: chris

Sort a List of Dicts

Sort a list of dicts by a key with sorted() + itemgetter for speed.

Author: chris

Regex with re.search

Use named groups with the re stdlib and access them via groupdict().

Author: chris