- Serving private content with signed URLs and signed cookies
- Create a key pair for a trusted key group
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| from matplotlib.colors import ListedColormap | |
| # A random colormap for matplotlib | |
| rand_cmap = ListedColormap(np.random.rand(256,3)) | |
| for i in range(5): | |
| plt.scatter([1,2,3], np.random.randn(3), s=10, cmap=rand_cmap) | |