Looking to start learning Python?

Begin Here

Author: Mike

eBook Review: MongoDB with Python and Ming

August 8, 2012 by Mike
This week I bought Rick Copeland's MongoDB with Python and Ming eBook from Amazon. It just came out in July 2012, so I figured I should check it out and see what all the fuss is with MongoDB and the whole NoSQL fad. Quick Review Why I picked it up: Mainly because I've been interested […]

Python: Using Turtles for Drawing Circles

August 6, 2012 by Mike
I am currently working on a book review for a college course Python book that uses the Python turtle module and Tkinter to help teach the Python programming language. Hopefully I'll have that book done by the end of the month. In the mean time, it made me decide to give the turtle module a […]

Python Concurrency: Porting from a Queue to Multiprocessing

August 3, 2012 by Mike
Earlier this week, I wrote a simple post about Python's Queues and demonstrated how they can be used with a threading pool to download a set of PDFs from the United States Internal Revenue Service's website. Today I decided to try "porting" that code over to Python's multiprocessing module. As one of my readers pointed […]

Python 101: An Intro to logging

August 2, 2012 by Mike
Python provides a very powerful logging library in its standard library. A lot of programmers use print statements for debugging (myself included), but you can also use logging to do this. It's actually cleaner to use logging as you won't have to go through all your code to remove the print statements. In this tutorial […]

Python Concurrency: An Example of a Queue

August 1, 2012 by Mike
Python comes with a lot of cool concurrency tools builtin, such as threads, Queues, semaphores and multiprocessing. In this article, we'll spend some time learning how to use Queues. A Queue can be used for first-in-first out or last-in-last-out stack-like implementations if you just use them directly. If you'd like to see that in action, […]
View More

End of content

No more pages to load

Copyright © 2024 Mouse Vs Python | Powered by Pythonlibrary