In this post I share a simple script to convert Bookcision JSON into a HTML page for your blog.
Bob Belderbos
Bob studied business economics, but got fired up about programming early in his career. He taught himself web design / coding and started living his biggest passion: automate the boring stuff, making other people's lives easier. Since then he has coded projects accruing millions in cost savings and built a coding platform that has taught Python to thousands of people worldwide. He deeply cares about helping other people succeed. His biggest win will be your next win!
Zip and ship, make an executable zipfile of your py project
By Bob Belderbos on 25 December 2016
In this post I show an example how you can distribute your code as an executable zipfile, a neat trick I discovered in Chapter 6 of The Hitchhiker’s Guide to Python
Get a weekly digest from a Pelican blog
By Bob Belderbos on 24 December 2016
In this post a script we use to get a weekly digest of our posts.
2016 py articles and useful books
By Bob Belderbos on 22 December 2016
Some of my Python articles I posted on my blog this year and useful books
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.