A collection of python programming cheat sheet and tips
Python anti-pattern: common problems with python coding
Python gotcha: useful advanced Python coding warnings/errors and fix
ionelmc.ro Blog on Understanding Python Metaclass
StackOverflow: Manual Throw Exception
pd.set_option('display.max_columns', None)
pd.set_option('display.max_rows', None)
Martin-thoma Blog on merge, join and concat
df['creation_date'] = pd.to_datetime(df['creation_date']).values.astype(np.int64) // 1e9
>>> my_list = [('a', 1), ('b', 2)]
>>> dict(my_list)
{'a': 1, 'b': 2}