adlfkjfadslkjfads

Python Tip of the Day - contextlib.contextmanager

Posted on Thu 21 October 2021 in Posts • Tagged with python, pythonTipOfTheDay, contextmanager, testing

How to use contextlib.contextmanager to combine context managers into one


Continue reading

F-Strings Are F'ing Cool Part 2

Posted on Sun 11 July 2021 in Posts • Tagged with python, pythonTipOfTheDay, fstrings

I learned some new tricks with f-strings, lets check 'em out.


Continue reading

Python Tip of the Day - lru_cache

Posted on Sat 02 May 2020 in Posts • Tagged with python, pythonTipOfTheDay, functools

How to use lru_cache for fun and profit


Continue reading

Asyncio part 2 - Now More Abstract

Posted on Wed 08 August 2018 in Posts • Tagged with python, pythonTipOfTheDay, asyncio, coroutine, abstract, abc, asyncawait

What happens when you mix coroutines with Abstract Base Classes?


Continue reading

Asyncio, You are a complex beast...

Posted on Sun 05 August 2018 in Posts • Tagged with asyncio, python, pythonTipOfTheDay, asyncawait

Learning asyncio


Continue reading

Python Tip of the Day - Merging Dicts

Posted on Fri 03 August 2018 in Posts • Tagged with python, pythonTipOfTheDay

Python Tip of the Day - Merging Two Dicts


Continue reading

F-Strings Are F'ing Cool

Posted on Thu 12 July 2018 in Posts • Tagged with python, pythonTipOfTheDay, fstrings

Python 3.6 introduced a new way to format strings. They're really f-ing cool. Let's see why.


Continue reading

Python Tip of the Day - Simple HTTP Server

Posted on Tue 17 April 2018 in Posts • Tagged with pythonTipOfTheDay, python

Using Python's Simple HTTP Server for fun and profit (and quickly sharing files)


Continue reading

Python Tip of the Day - Double If's in Comprehensions

Posted on Wed 11 April 2018 in Posts • Tagged with pythonTipOfTheDay, python

So I was reviewing a coworkers pull request today and saw something I hadn't seen in Python before. As it turns out you can have multiple if clauses on a list comprehension. For example:

>>> [v for v in range(50) if v % 2 == 0 if v > 10]  # all even numbers …

Continue reading

Python Tip of the Day - Logging basicConfig

Posted on Wed 14 February 2018 in Posts • Tagged with pythonTipOfTheDay, logging, python

Oftentimes you just want to try out something related to logging in the REPL, or in a hacky script.  Wading through the docs on the logging module is this painful exercise in reading about handlers and formatters and other stuff you don't care about.

The simplest way to just get …


Continue reading