Ones you have generated, downloaded and extracted the certificate zip, you will find 2 files in it:
gd_bundle-g2-g1.crtIntermediate CertificateRANDOM_NUM.crtYour SSL Certificate
| import os | |
| import glob | |
| import pandas as pd | |
| import xml.etree.ElementTree as ET | |
| def xml_to_csv(path): | |
| xml_list = [] | |
| for xml_file in glob.glob(path + '/*.xml'): | |
| tree = ET.parse(xml_file) |
| #!/usr/bin/env python3 | |
| """ | |
| The idea here is to have one demo of each common argparse format | |
| type. This is useful for me to be able to copy/paste into a new | |
| script and have something to quickly edit and trim down to get | |
| the functionality I need. | |
| Expect this file to grow/change as I need new options. | |
| This is, however, a working example. I hate examples that don't |
Sometimes you want to have a subdirectory on the master branch be the root directory of a repository’s gh-pages branch. This is useful for things like sites developed with Yeoman, or if you have a Jekyll site contained in the master branch alongside the rest of your code.
For the sake of this example, let’s pretend the subfolder containing your site is named dist.
Remove the dist directory from the project’s .gitignore file (it’s ignored by default by Yeoman).
| import numpy as np | |
| import matplotlib | |
| import matplotlib.pyplot as plt | |
| def colorize(words, color_array): | |
| # words is a list of words | |
| # color_array is an array of numbers between 0 and 1 of length equal to words | |
| cmap = matplotlib.cm.get_cmap('RdBu') | |
| template = '<span class="barcode"; style="color: black; background-color: {}">{}</span>' | |
| colored_string = '' |