Mike

Python Interviews Excerpt: Sebastian Raschka

The following is an excerpt from my book, Python Interviews Sebastian Raschka received his doctorate in Quantitative Biology and Biochemistry and Molecular Biology in 2017, from Michigan State University. Sebastian is the bestselling author of Python Machine Learning, which received the ACM Best of Computing award in 2016. Driscoll: Python is one of the languages

Python Interviews Excerpt: Sebastian Raschka Read More »

PyDev of the Week: Emily Morehouse-Valcarcel

This week we welcome Emily Morehouse-Valcarcel (@emilyemorehouse) as our PyDev of the Week. Emily is the co-founder and Director of Engineering of Cuttlesoft. She recently spoke at PyCascades about Python’s AST. You can get a feel for what projects she is interested in over on her Github profile. Let’s take a few moments to get

PyDev of the Week: Emily Morehouse-Valcarcel Read More »

ReportLab 101: The textobject

The ReportLab toolkit provides multiple ways for you to generate text on your PDFs. The most popular examples that I have seen are using canvas methods or using PLATYPUS. The canvas method that you will likely see the most is drawString. Here is an example: from reportlab.pdfgen import canvas c = canvas.Canvas(“hello.pdf”) c.drawString(100, 100, “Welcome

ReportLab 101: The textobject Read More »