Rich pretty-prints dictionaries, but not yet requests's requests.structures.CaseInsensitiveDict. Given the ubiquity of the package, perhaps it's worthwhile including it.
MWE:
import requests
from rich import print
res = requests.get("https://google.com/")
print(type(res.headers))
print()
print(res.headers)
Rich pretty-prints dictionaries, but not yet
requests
'srequests.structures.CaseInsensitiveDict
. Given the ubiquity of the package, perhaps it's worthwhile including it.MWE: