On pyplot - I can't figure out (pun not intended) how to make the text and the box of the legend bold (well, the text bold and the linewidth of the box wider). That's what I have so far.
import pylab as plt
fig = plt.figure()
ax = fig.add_subplot(111)
...
ax.bar(...)
...
ax.legend(loc='best',prop={'size':35})