Awesome Python Package Made By Microsoft

Manpreet Singh
2 min readJul 6, 2022

Welcome back! Python is an awesome programming language with a ton of capability, if you’re new to Python, check out the link below to learn more about it:

So, let’s take a look at an awesome Python package made my Microsoft! This specific package is called picologging, and it’s an optimized logging library for Python! Luckily for us, this package is hosted on GitHub, check out the link below to learn more about it:

This specific package allows 4–10x faster performance than the standard logging module within Python!

To install this package, all you have to do is use the following pip command:

pip install picologging

At this point, we are ready to start using this package, we can import the logging portion of this package with the following command:

--

--