The technique you have described, though a use case, is usually known as Association Rules or Market Basket Analysis. (The latter term reflects the earliest applications of these algorithms, which was the study of consumer behavior in supermarkets--i.e., if a shopper buys a jar of peanut butter, how often do they buy a jar of honey?)
There is at least one Python library, Orange, which has an Association Rules module.
The Association Rules code is in the Orange module, orngAssoc.
Typically, you pass in your data and a 'threshold criterion' (that specify how strong the association must be between any two items in a given data row), and the algorithm returns a set of rules that exceed that threshold.
What is very interesting about the Orange A/R module is that it can alternatively return items sets--i.e., the data rows that satisfy those rule sets.
The documentation for Orange's A/R module is concise and straightforward, with several simple working code examples (i.e., that you can plug directly in to the A/R module).
I can strongly recommend this module--i've used it about a dozen times in the past few months. It's engine seems to be as good as any other implementation i've used (Orange implements Agrawal's dynamic induction algorithm, as well as a modified form of that Algorithm); the appeal of the Orange Association Rules module is that it is(in my opinion) far easier to use than others, and the results are returned in a form easier to interpret and often more useful (i.e., item sets)--again, compared to other implementations.