Python
-
Python Decorator Tutorial
Sometimes, we encounter problems that require us to extend the behavior of a function, but we don’t want to change…
Read More » -
Python CSV Reader / Writer Example
CSV (comma-separated values) is a standard for exporting and importing data across multiple formats, such as MySQL and excel. It…
Read More » -
Python: Parsing a JSON HTTP chunking stream
I’ve been playing around with meetup.com’s API again and this time wanted to consume the chunked HTTP RSVP stream and…
Read More » -
Black Pipe Testing A Connected Application In C
This is the fourth article in my series on “black pipe” testing. Here I describe testing libmongoc (the MongoDB C…
Read More » -
Test MongoDB Failure Scenarios With MockupDB
This is the fifth article in my series on “black pipe” testing. Traditional black box tests work well if your…
Read More » -
Tech Talks Are Campfires: Jesse’s Three Reasons You Should Speak At PyCon
The PyCon call for proposals has been open a few weeks now—why should you submit a talk? Why should you…
Read More » -
MockupDB: Testing The MongoDB C Driver With Python
This is the third article in my series on “black pipe” testing. The series describes how to test networked code,…
Read More » -
Testing PyMongo As A Black Pipe
This is the second article in my six-part series on “black pipe” testing. PyMongo, the official Python client for MongoDB,…
Read More » -
Neo4j: Loading JSON documents with Cypher
One of the most commonly asked questions I get asked is how to load JSON documents into Neo4j and although…
Read More »