While playing around with code for our post on generators we discovered the ipaddress module, part of the Standard Library. Such a handy little module!
Articles on stdlib
Twitter digest 2017 week 11
By PyBites Team on 19 March 2017
Every weekend we share a curated list of 15 cool things (mostly Python) that we found / tweeted throughout the week.
Twitter digest 2017 week 10
By PyBites Team on 11 March 2017
During the weekend we will share a curated list of 15 cool things (mostly Python) we found / tweeted during the week.
Comparing Lists with Difflib
By Julian Sequeira on 8 March 2017
Learn to compare blocks of text with the difflib module.
Twitter digest 2017 week 08
By PyBites Team on 25 February 2017
On Saturdays we will share a curated list of 15 cool things (mostly Python) we found / tweeted during the week.
Read the stdlib: deque
By Bob Belderbos on 20 December 2016
Use collections.deque to rotate letters in string (or elements in list). It has a native method which performs faster too.