Mike

An intro to aiohttp

Python 3.5 added some new syntax that allows developers to create asynchronous applications and packages easier. One such package is aiohttp which is an HTTP client/server for asyncio. Basically it allows you to write asynchronous clients and servers. The aiohttp package also supports Server WebSockets and Client WebSockets. You can install aiohttp using pip: pip […]

An intro to aiohttp Read More »

Python 201 is the Featured Book on Leanpub Today

Leanpub is featuring my second book on their homepage today: You can get the book for 50% off until tomorrow by using the following link: http://leanpub.com/python201/c/50percent Python 201 covers the following topics: Part I – Intermediate Modules Chapter 1 – The argparse module Chapter 2 – The collections module Chapter 3 – The contextlib module

Python 201 is the Featured Book on Leanpub Today Read More »

wxPython Cookbook Writing Update: Beta Version Available

I am happy to announce that I now have all the chapters for my latest book, wxPython Cookbook, ready to be checked out. I still consider the book to be in beta mode as I need to go through each chapter and check them over as much as possible this month, but I am also

wxPython Cookbook Writing Update: Beta Version Available Read More »

An Intro to the Python Imaging Library / Pillow

The Python Imaging Library or PIL allowed you to do image processing in Python. The original author, Fredrik Lundh, wrote one of my favorite Python blogs when I first started learning Python. However PIL’s last release was way back in 2009 and the blog also stopped getting updated. Fortunately, there were some other Python folks

An Intro to the Python Imaging Library / Pillow Read More »