Daily Python hints, help and learnings

Joined November 2019
Photos and videos
RabbitMQ has a PriorityQueue class which allows you to prioritize specific items on your queue #pythonDaily #python #mqtt
1
Dealing with a messy OOP Codebase? Consider applying the Five „SOLID“ design principles. en.wikipedia.org/wiki/SOLID #pythonDaily #python #oop #programming
Python supports „sorted(<list>)“ function and a built-in list method „<list>.sort()“. Whereas the function returns a new list, the built-in method doesn’t. #pythonDaily #python
Speeding up your code by using python multithreading: concurrent.futures.ThreadPoolExecutor
Our HTTP library of choice is „Requests“ requests.kennethreitz.org #Python #httpClient #pythonDaily

You can use f-strings in python 3 to improve your string interpolation code. Example: „Hello {var}!“
1