There is a well-established family of techniques directed to precisely to the use case presented in your Question. Given the pedigree and braod selection of libraries implementing these techniques, they are not well known even to many data analysts.
This class of techniques is called Frequent Itemsets (or Frequent Itemset Learning); the terms Association Rules and Market Bakset Analysis are also used but the latter is much less common. (As an aside, perhaps the vague-sounding names contribute to their relative obscurity).
The first sentence of arules background Docs (arules is an R Package implementing Association Rules) :
Mining frequent itemsets and association rules is a popular and
well-researched method for discovering interesting relations between
variables in large datasets.
Taxonomically, AR/FI is an unsupervised machine learning technique, that according to HTF is a simplification of "bump hunting" or "mode finding"
In any event, those two terms--used either by themselves or together are the best inital query terms for Web searches. You will find Wikipedia entries for both terms; the one for Association Rules is a good high-level overview, but sufficiently detailed for a programmer. So those two terms describe the technique; "Apriori" and "Eclat" are the two most widely used implementations of the original Association Rules algorithm, which was originally devleoped at IBM Almaden Research.
To use apriori, you pass in the database fields that you want the algorithm to test for association; you also pass in a threshold association--aka support level. i usuaully chose 5% then tune it in one direction or the other until i get the number of rules that i want (the higher the support level, the fewer rules returned).
What apriori returns is the association rules themselves.
If you want a python library to do AR/FI, then Orange is the only one that i know of (there could be others). (Orange has a GUI, as you probably know, but it has a nice scripting interface for python). I have never used Orange but i just had a brief look at its Association Rules module and and it seems to be implemented similarly to the AR libraries i have personally used. The tutorial (in python) i thought was very good.
My recommendation might be to access R's strong support for AR/FI via Python using the R bindings, RPy2.
R is the only language/platform have used for Association Rules, and i have all of the five AR/FI libraries a fair amount. For my first AR/FI project, my choice of R had nothing to do with the availability or quality of the AR/FI libraries, but rather with the simple-to-use relational database drivers (for MySQL, PostgreSQL, and SQLite); now there are also drivers/bindings for the most commonly used NoSQL transaction databases like MongoDB and CouchDB. The MySQL drivers/bindings allowed me to connect to my database via R, and feed the data directly to the apriori algorithm.