02. Plot favicons

This example lists all the libraries installed in the environment using pip, gets their site url, downloads the icon and displays it in the example.

Note

The command cut is not available in windows! Thus, the code will not run in te standard Windows Command Prompt. However, it might be available on Cygwin o Git for windows.

 14 # Libraries
 15 import favicon
 16 import subprocess as sp
 17
 18
 19 class IconHTML:
 20     """Class to display html in sphinx-gallery."""
 21     TMP0 = '<img src={url} style="{s}", width={w} height={h}>'
 22     TMP1 = '<div>'+TMP0+' <span>{name}</span></div>'
 23
 24     """Class to display icons on sphinx-gallery."""
 25     def __init__(self, d, width=25, height=25, verbose=0):
 26         self.d = d
 27         self.width = width
 28         self.height = height
 29         self.style = "display: inline; vertical-align:middle;"
 30         self.verbose = verbose
 31
 32     def _repr_html_short_(self):
 33         return ' '.join([self.TMP0.format(url=v,
 34             w=self.width, h=self.height, s=self.style)
 35                 for k,v in self.d.items()])
 36
 37     def _repr_html_long_(self):
 38         return ' '.join([self.TMP1.format(url=v,
 39             w=self.width, h=self.height, s=self.style, name=k.lower())
 40                 for k, v in self.d.items()])
 41
 42     def _repr_html_(self):
 43         if self.verbose == 0:
 44             return self._repr_html_short_()
 45         return self._repr_html_long_()
 46
 47
 48 # List of libraries for which the icon (if found)
 49 # should be included in the output.
 50 INCLUDE = [
 51     'pandas',
 52     'Flask',
 53     'imblearn',
 54     'numba',
 55     'numpy',
 56     'plotly',
 57     'PyYAML',
 58     'scipy',
 59     'seaborn',
 60     'statsmodels',
 61     'alabaster',
 62     'attrs',
 63     'Babel',
 64     'bokeh',
 65     'joblib',
 66     'nltk',
 67     'notebook',
 68     'torch',
 69     'matplotlib',
 70     'pillow',
 71     'pygments',
 72     'pytest',
 73     'tqdm',
 74     'urllib3',
 75     'future'
 76 ]
 77
 78 # Define command to list packages and urls
 79 COMMAND = "pip list --format=freeze | cut -d= -f1 | xargs pip show | "
 80 COMMAND+= "awk '/^Name/{printf $2} /^Home-page/{print \": \"$2}'"
 81
 82 # List of package name and url.
 83 output = sp.getoutput(COMMAND)
 84
 85 # Show
 86 print("\nCommand output:")
 87 print(output)
 88
 89 # Create dictionary
 90 d = {}
 91 for line in output.split("\n")[2:]:
 92     # Find name and url
 93     name, url = line.split(': ')
 94     if not url.startswith('https:'):
 95         continue
 96     if name not in INCLUDE:
 97         continue
 98     # Store name and url
 99     icons = favicon.get(url)
100     for i, ico in enumerate(icons):
101         d['%s-%s' % (name, i)] = ico.url

Out:

Command output:
absl-py: https://github.com/abseil/abseil-py
aiohttp: https://github.com/aio-libs/aiohttp
aiosignal: https://github.com/aio-libs/aiosignal
alabaster: https://alabaster.readthedocs.io/
anyio:
appnope: http://github.com/minrk/appnope
argon2-cffi:
argon2-cffi-bindings: https://github.com/hynek/argon2-cffi-bindings
arrow: https://arrow.readthedocs.io
asttokens: https://github.com/gristlabs/asttokens
astunparse: https://github.com/simonpercivall/astunparse
async-timeout: https://github.com/aio-libs/async-timeout
attrs:
babel: https://babel.pocoo.org/
backcall: https://github.com/takluyver/backcall
beautifulsoup4: https://www.crummy.com/software/BeautifulSoup/bs4/
bleach: https://github.com/mozilla/bleach
bokeh: https://github.com/bokeh/bokeh
Brotli: https://github.com/google/brotli
bs4: https://pypi.python.org/pypi/beautifulsoup4
cachetools: https://github.com/tkem/cachetools/
certifi: https://github.com/certifi/python-certifi
cffi: http://cffi.readthedocs.org
charset-normalizer: https://github.com/Ousret/charset_normalizer
click: https://palletsprojects.com/p/click/
cloudpickle: https://github.com/cloudpipe/cloudpickle
comm: https://github.com/ipython/comm
contourpy:
cryptography: https://github.com/pyca/cryptography
cycler: https://github.com/matplotlib/cycler
dacite: https://github.com/konradhalas/dacite
dash: https://plotly.com/dash
dash-core-components: UNKNOWN
dash-html-components: https://github.com/plotly/dash-html-components
dash-table: UNKNOWN
dask: https://github.com/dask/dask/
dataprep: https://github.com/sfu-db/dataprep
deap: https://www.github.com/deap
debugpy: https://aka.ms/debugpy
decorator: https://github.com/micheles/decorator
defusedxml: https://github.com/tiran/defusedxml
docutils: http://docutils.sourceforge.net/
et-xmlfile: https://foss.heptapod.net/openpyxl/et_xmlfile
executing: https://github.com/alexmojaki/executing
factory-boy: https://github.com/FactoryBoy/factory_boy
Faker: https://github.com/joke2k/faker
fastjsonschema: https://github.com/horejsek/python-fastjsonschema
favicon: https://github.com/scottwernervt/favicon
filelock: https://github.com/tox-dev/py-filelock
Flask: https://palletsprojects.com/p/flask
Flask-Compress: https://github.com/colour-science/flask-compress
Flask-Cors: https://github.com/corydolphin/flask-cors
flatbuffers: https://google.github.io/flatbuffers/
fonttools: http://github.com/fonttools/fonttools
fqdn: https://github.com/ypcrts/fqdn
frozenlist: https://github.com/aio-libs/frozenlist
fsspec: http://github.com/fsspec/filesystem_spec
gast: https://github.com/serge-sans-paille/gast/
google-auth: https://github.com/googleapis/google-auth-library-python
google-auth-oauthlib: https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib
google-pasta: https://github.com/google/pasta
graphviz: https://github.com/xflr6/graphviz
grpcio: https://grpc.io
h5py: https://www.h5py.org/
hiplot: https://github.com/facebookresearch/hiplot
html2image: https://github.com/vgalin/html2image
htmlmin: https://htmlmin.readthedocs.io/en/latest/
idna:
ImageHash: https://github.com/JohannesBuchner/imagehash
imagesize: https://github.com/shibukawa/imagesize_py
importlib-metadata: https://github.com/python/importlib_metadata
ipykernel: https://ipython.org
ipython: https://ipython.org
ipython-genutils: http://ipython.org
ipywidgets: http://ipython.org
isoduration: https://github.com/bolsote/isoduration
itsdangerous: https://palletsprojects.com/p/itsdangerous/
jax: https://github.com/google/jax
jedi: https://github.com/davidhalter/jedi
Jinja2:
joblib: https://joblib.readthedocs.io
jsonpath-ng: https://github.com/h2non/jsonpath-ng
jsonpointer: https://github.com/stefankoegl/python-json-pointer
jsonschema: https://github.com/python-jsonschema/jsonschema
jupyter_client: https://jupyter.org
jupyter_core: https://jupyter.org
jupyter-events: http://jupyter.org
jupyter_server: https://jupyter-server.readthedocs.io
jupyter_server_terminals: https://jupyter.org
jupyterlab-pygments: https://github.com/jupyterlab/jupyterlab_pygments
jupyterlab-widgets: https://github.com/jupyter-widgets/ipywidgets
kaleido: UNKNOWN
keras: https://keras.io/
kiwisolver: https://github.com/nucleic/kiwi
libclang: https://github.com/sighingnow/libclang
llvmlite: http://llvmlite.readthedocs.io
locket: http://github.com/mwilliamson/locket.py
Markdown: https://Python-Markdown.github.io/
MarkupSafe: https://palletsprojects.com/p/markupsafe/
matplotlib: https://matplotlib.org
matplotlib-inline: https://github.com/ipython/matplotlib-inline
Metaphone: https://github.com/oubiwann/metaphone
mistune: https://github.com/lepture/mistune
ml-dtypes: https://github.com/jax-ml/ml_dtypes
mpmath: http://mpmath.org/
multidict: https://github.com/aio-libs/multidict
multimethod: https://github.com/coady/multimethod
nbclassic: https://github.com/jupyter/nbclassic
nbclient: https://jupyter.org
nbconvert: https://jupyter.org
nbformat: https://jupyter.org
nest-asyncio: https://github.com/erdewit/nest_asyncio
networkx: https://networkx.org/
nltk: https://www.nltk.org/
notebook: http://jupyter.org
notebook_shim:
numba: https://numba.pydata.org
numpy: https://www.numpy.org
oauthlib: https://github.com/oauthlib/oauthlib
openpyxl: https://openpyxl.readthedocs.io
opt-einsum: https://github.com/dgasmith/opt_einsum
overrides: https://github.com/mkorpela/overrides
packaging:
pandas: https://pandas.pydata.org
pandas-profiling: https://github.com/ydataai/pandas-profiling
pandocfilters: http://github.com/jgm/pandocfilters
parso: https://github.com/davidhalter/parso
partd: http://github.com/dask/partd/
patsy: https://github.com/pydata/patsy
pdfminer.six: https://github.com/pdfminer/pdfminer.six
pdfplumber: https://github.com/jsvine/pdfplumber
pexpect: https://pexpect.readthedocs.io/
phik: http://phik.rtfd.io
pickleshare: https://github.com/pickleshare/pickleshare
Pillow: https://python-pillow.org
pip: https://pip.pypa.io/
platformdirs: https://github.com/platformdirs/platformdirs
plotly: https://plotly.com/python/
ply: http://www.dabeaz.com/ply/
prometheus-client: https://github.com/prometheus/client_python
prompt-toolkit: https://github.com/prompt-toolkit/python-prompt-toolkit
protobuf: https://developers.google.com/protocol-buffers/
psutil: https://github.com/giampaolo/psutil
ptyprocess: https://github.com/pexpect/ptyprocess
pure-eval: http://github.com/alexmojaki/pure_eval
pyamr: https://bahp.github.io/pyAMR/
pyasn1: https://github.com/etingof/pyasn1
pyasn1-modules: https://github.com/etingof/pyasn1-modules
pybaobabdt: https://gitlab.tue.nl/20040367/pybaobab
pycparser: https://github.com/eliben/pycparser
pydantic: https://github.com/pydantic/pydantic
pydot: https://github.com/pydot/pydot
Pygments: https://pygments.org
pyparsing: https://github.com/pyparsing/pyparsing/
pypdfium2: https://github.com/pypdfium2-team/pypdfium2
pyrsistent: https://github.com/tobgu/pyrsistent/
python-crfsuite: https://github.com/scrapinghub/python-crfsuite
python-dateutil: https://github.com/dateutil/dateutil
python-json-logger: http://github.com/madzak/python-json-logger
python-stdnum: https://arthurdejong.org/python-stdnum/
pytz: http://pythonhosted.org/pytz
PyWavelets: https://github.com/PyWavelets/pywt
PyYAML: https://pyyaml.org/
pyzmq: https://pyzmq.readthedocs.org
rapidfuzz: https://github.com/maxbachmann/RapidFuzz
regex: https://github.com/mrabarnett/mrab-regex
requests: https://requests.readthedocs.io
requests-oauthlib: https://github.com/requests/requests-oauthlib
rfc3339-validator: https://github.com/naimetti/rfc3339-validator
rfc3986-validator: https://github.com/naimetti/rfc3986-validator
rsa: https://stuvel.eu/rsa
scikit-learn: http://scikit-learn.org
scipy: https://scipy.org/
seaborn:
segment-anything:
Send2Trash: https://github.com/arsenetar/send2trash
setuptools: https://github.com/pypa/setuptools
shap: http://github.com/slundberg/shap
six: https://github.com/benjaminp/six
sklearn:
slicer: https://github.com/interpretml/slicer
sniffio: https://github.com/python-trio/sniffio
snowballstemmer: https://github.com/snowballstem/snowball
soupsieve: https://github.com/facelessuser/soupsieve
Sphinx: https://www.sphinx-doc.org/
sphinx-gallery: https://sphinx-gallery.github.io
sphinx-rtd-theme: https://github.com/readthedocs/sphinx_rtd_theme
sphinxcontrib-applehelp: https://www.sphinx-doc.org/
sphinxcontrib-devhelp: https://www.sphinx-doc.org/
sphinxcontrib-htmlhelp: https://www.sphinx-doc.org/
sphinxcontrib-jquery:
sphinxcontrib-jsmath: http://sphinx-doc.org/
sphinxcontrib-qthelp: https://www.sphinx-doc.org/
sphinxcontrib-serializinghtml: https://www.sphinx-doc.org/
SQLAlchemy: http://www.sqlalchemy.org
stack-data: http://github.com/alexmojaki/stack_data
statsmodels: https://www.statsmodels.org/
stopit: http://pypi.python.org/pypi/stopit
sympy: https://sympy.org
tableone: https://github.com/tompollard/tableone
tabulate: https://github.com/astanin/python-tabulate
tangled-up-in-unicode: https://github.com/dylan-profiler/tangled-up-in-unicode
tenacity: https://github.com/jd/tenacity
tensorboard: https://github.com/tensorflow/tensorboard
tensorboard-data-server: https://github.com/tensorflow/tensorboard/tree/master/tensorboard/data/server
tensorboard-plugin-wit: https://whatif-tool.dev
tensorflow: https://www.tensorflow.org/
tensorflow-estimator: https://www.tensorflow.org/
tensorflow-io-gcs-filesystem: https://github.com/tensorflow/io
termcolor: https://github.com/termcolor/termcolor
terminado: https://github.com/jupyter/terminado
threadpoolctl: https://github.com/joblib/threadpoolctl
tinycss2: https://www.courtbouillon.org/tinycss2
tomli: https://github.com/hukkin/tomli
toolz: https://github.com/pytoolz/toolz/
torch: https://pytorch.org/
torchvision: https://github.com/pytorch/vision
tornado: http://www.tornadoweb.org/
TPOT: https://github.com/EpistasisLab/tpot
tqdm: https://tqdm.github.io
traitlets: https://github.com/ipython/traitlets
typeguard: UNKNOWN
typing: https://docs.python.org/3/library/typing.html
typing_extensions:
tzdata: https://github.com/python/tzdata
update-checker: https://github.com/bboe/update_checker
uri-template: https://github.com/plinss/uri_template/
urllib3: https://urllib3.readthedocs.io/
varname: https://github.com/pwwang/python-varname
visions: https://github.com/dylan-profiler/visions
wcwidth: https://github.com/jquast/wcwidth
webcolors: https://github.com/ubernostrum/webcolors
webencodings: https://github.com/SimonSapin/python-webencodings
websocket-client: https://github.com/websocket-client/websocket-client.git
Werkzeug: https://palletsprojects.com/p/werkzeug/
wheel:
widgetsnbextension: http://ipython.org
wordcloud: https://github.com/amueller/word_cloud
wrapt: https://github.com/GrahamDumpleton/wrapt
xgboost: https://github.com/dmlc/xgboost
yarl: https://github.com/aio-libs/yarl/
ydata-profiling: https://github.com/ydataai/ydata-profiling
zipp: https://github.com/jaraco/zipp
106 aux = IconHTML(d)
107 aux


111 aux = IconHTML(d, verbose=1)
112 aux
bokeh-0
bokeh-1
bokeh-2
flask-0
joblib-0
matplotlib-0
numba-0
numpy-0
pandas-0
plotly-0
plotly-1
pyyaml-0
scipy-0
torch-0
torch-1
tqdm-0
urllib3-0


117 # Create dictionary
118 d = {}
119 for line in output.split("\n")[2:]:
120     # Find name and url
121     name, url = line.split(': ')
122     if not url.startswith('https:'):
123         continue
124     # Store name and url
125     icons = favicon.get(url)
126     for i, ico in enumerate(icons):
127         d['%s-%s' % (name, i)] = ico.url
131 aux = IconHTML(d, verbose=1)
132 aux
aiosignal-0
aiosignal-1
aiosignal-2
argon2-cffi-bindings-0
argon2-cffi-bindings-1
argon2-cffi-bindings-2
asttokens-0
asttokens-1
asttokens-2
astunparse-0
astunparse-1
astunparse-2
async-timeout-0
async-timeout-1
async-timeout-2
backcall-0
backcall-1
backcall-2
bleach-0
bleach-1
bleach-2
bokeh-0
bokeh-1
bokeh-2
brotli-0
brotli-1
brotli-2
bs4-0
bs4-1
cachetools-0
cachetools-1
cachetools-2
certifi-0
certifi-1
certifi-2
charset-normalizer-0
charset-normalizer-1
charset-normalizer-2
click-0
cloudpickle-0
cloudpickle-1
cloudpickle-2
comm-0
comm-1
comm-2
cryptography-0
cryptography-1
cryptography-2
cycler-0
cycler-1
cycler-2
dacite-0
dacite-1
dacite-2
dash-0
dash-1
dash-2
dash-html-components-0
dash-html-components-1
dash-html-components-2
dask-0
dask-1
dask-2
dataprep-0
dataprep-1
dataprep-2
deap-0
deap-1
deap-2
deap-3
debugpy-0
debugpy-1
debugpy-2
decorator-0
decorator-1
decorator-2
defusedxml-0
defusedxml-1
defusedxml-2
et-xmlfile-0
et-xmlfile-1
et-xmlfile-2
et-xmlfile-3
executing-0
executing-1
executing-2
factory-boy-0
factory-boy-1
factory-boy-2
faker-0
faker-1
faker-2
fastjsonschema-0
fastjsonschema-1
fastjsonschema-2
favicon-0
favicon-1
favicon-2
filelock-0
filelock-1
filelock-2
flask-0
flask-compress-0
flask-compress-1
flask-compress-2
flask-cors-0
flask-cors-1
flask-cors-2
fqdn-0
fqdn-1
fqdn-2
frozenlist-0
frozenlist-1
frozenlist-2
gast-0
gast-1
gast-2
google-auth-0
google-auth-1
google-auth-2
google-auth-oauthlib-0
google-auth-oauthlib-1
google-auth-oauthlib-2
google-pasta-0
google-pasta-1
google-pasta-2
graphviz-0
graphviz-1
graphviz-2
grpcio-0
grpcio-1
grpcio-2
grpcio-3
grpcio-4
grpcio-5
grpcio-6
hiplot-0
hiplot-1
hiplot-2
html2image-0
html2image-1
html2image-2
imagehash-0
imagehash-1
imagehash-2
imagesize-0
imagesize-1
imagesize-2
importlib-metadata-0
importlib-metadata-1
importlib-metadata-2
isoduration-0
isoduration-1
isoduration-2
itsdangerous-0
jax-0
jax-1
jax-2
jedi-0
jedi-1
jedi-2
joblib-0
jsonpath-ng-0
jsonpath-ng-1
jsonpath-ng-2
jsonpointer-0
jsonpointer-1
jsonpointer-2
jsonschema-0
jsonschema-1
jsonschema-2
jupyter_client-0
jupyter_client-1
jupyter_client-2
jupyter_client-3
jupyter_client-4
jupyter_client-5
jupyter_core-0
jupyter_core-1
jupyter_core-2
jupyter_core-3
jupyter_core-4
jupyter_core-5
jupyter_server_terminals-0
jupyter_server_terminals-1
jupyter_server_terminals-2
jupyter_server_terminals-3
jupyter_server_terminals-4
jupyter_server_terminals-5
jupyterlab-pygments-0
jupyterlab-pygments-1
jupyterlab-pygments-2
jupyterlab-widgets-0
jupyterlab-widgets-1
jupyterlab-widgets-2
keras-0
kiwisolver-0
kiwisolver-1
kiwisolver-2
libclang-0
libclang-1
libclang-2
markdown-0
markupsafe-0
matplotlib-0
matplotlib-inline-0
matplotlib-inline-1
matplotlib-inline-2
metaphone-0
metaphone-1
metaphone-2
mistune-0
mistune-1
mistune-2
ml-dtypes-0
ml-dtypes-1
ml-dtypes-2
multidict-0
multidict-1
multidict-2
multimethod-0
multimethod-1
multimethod-2
nbclassic-0
nbclassic-1
nbclassic-2
nbclient-0
nbclient-1
nbclient-2
nbclient-3
nbclient-4
nbclient-5
nbconvert-0
nbconvert-1
nbconvert-2
nbconvert-3
nbconvert-4
nbconvert-5
nbformat-0
nbformat-1
nbformat-2
nbformat-3
nbformat-4
nbformat-5
nest-asyncio-0
nest-asyncio-1
nest-asyncio-2
networkx-0
numba-0
numpy-0
oauthlib-0
oauthlib-1
oauthlib-2
opt-einsum-0
opt-einsum-1
opt-einsum-2
overrides-0
overrides-1
overrides-2
pandas-0
pandas-profiling-0
pandas-profiling-1
pandas-profiling-2
parso-0
parso-1
parso-2
patsy-0
patsy-1
patsy-2
pdfminer.six-0
pdfminer.six-1
pdfminer.six-2
pdfplumber-0
pdfplumber-1
pdfplumber-2
pickleshare-0
pickleshare-1
pickleshare-2
pillow-0
platformdirs-0
platformdirs-1
platformdirs-2
plotly-0
plotly-1
prometheus-client-0
prometheus-client-1
prometheus-client-2
prompt-toolkit-0
prompt-toolkit-1
prompt-toolkit-2
protobuf-0
protobuf-1
protobuf-2
protobuf-3
protobuf-4
protobuf-5
protobuf-6
protobuf-7
protobuf-8
protobuf-9
psutil-0
psutil-1
psutil-2
ptyprocess-0
ptyprocess-1
ptyprocess-2
pyamr-0
pyasn1-0
pyasn1-1
pyasn1-2
pyasn1-modules-0
pyasn1-modules-1
pyasn1-modules-2
pybaobabdt-0
pybaobabdt-1
pybaobabdt-2
pybaobabdt-3
pycparser-0
pycparser-1
pycparser-2
pydantic-0
pydantic-1
pydantic-2
pydot-0
pydot-1
pydot-2
pygments-0
pyparsing-0
pyparsing-1
pyparsing-2
pypdfium2-0
pypdfium2-1
pypdfium2-2
pyrsistent-0
pyrsistent-1
pyrsistent-2
python-crfsuite-0
python-crfsuite-1
python-crfsuite-2
python-dateutil-0
python-dateutil-1
python-dateutil-2
python-stdnum-0
python-stdnum-1
python-stdnum-2
pywavelets-0
pywavelets-1
pywavelets-2
pyyaml-0
pyzmq-0
rapidfuzz-0
rapidfuzz-1
rapidfuzz-2
regex-0
regex-1
regex-2
requests-oauthlib-0
requests-oauthlib-1
requests-oauthlib-2
rfc3339-validator-0
rfc3339-validator-1
rfc3339-validator-2
rfc3986-validator-0
rfc3986-validator-1
rfc3986-validator-2
scipy-0
send2trash-0
send2trash-1
send2trash-2
setuptools-0
setuptools-1
setuptools-2
six-0
six-1
six-2
slicer-0
slicer-1
slicer-2
sniffio-0
sniffio-1
sniffio-2
snowballstemmer-0
snowballstemmer-1
snowballstemmer-2
soupsieve-0
soupsieve-1
soupsieve-2
sphinx-0
sphinx-rtd-theme-0
sphinx-rtd-theme-1
sphinx-rtd-theme-2
sphinxcontrib-applehelp-0
sphinxcontrib-devhelp-0
sphinxcontrib-htmlhelp-0
sphinxcontrib-qthelp-0
sphinxcontrib-serializinghtml-0
tableone-0
tableone-1
tableone-2
tabulate-0
tabulate-1
tabulate-2
tangled-up-in-unicode-0
tangled-up-in-unicode-1
tangled-up-in-unicode-2
tenacity-0
tenacity-1
tenacity-2
tensorboard-0
tensorboard-1
tensorboard-2
tensorboard-data-server-0
tensorboard-data-server-1
tensorboard-data-server-2
tensorboard-plugin-wit-0
tensorflow-0
tensorflow-1
tensorflow-2
tensorflow-3
tensorflow-4
tensorflow-estimator-0
tensorflow-estimator-1
tensorflow-estimator-2
tensorflow-estimator-3
tensorflow-estimator-4
tensorflow-io-gcs-filesystem-0
tensorflow-io-gcs-filesystem-1
tensorflow-io-gcs-filesystem-2
termcolor-0
termcolor-1
termcolor-2
terminado-0
terminado-1
terminado-2
threadpoolctl-0
threadpoolctl-1
threadpoolctl-2
tinycss2-0
tomli-0
tomli-1
tomli-2
toolz-0
toolz-1
toolz-2
torch-0
torch-1
torchvision-0
torchvision-1
torchvision-2
tpot-0
tpot-1
tpot-2
tqdm-0
traitlets-0
traitlets-1
traitlets-2
typing-0
typing-1
tzdata-0
tzdata-1
tzdata-2
update-checker-0
update-checker-1
update-checker-2
uri-template-0
uri-template-1
uri-template-2
urllib3-0
varname-0
varname-1
varname-2
visions-0
visions-1
visions-2
wcwidth-0
wcwidth-1
wcwidth-2
webcolors-0
webcolors-1
webcolors-2
webencodings-0
webencodings-1
webencodings-2
websocket-client-0
websocket-client-1
websocket-client-2
werkzeug-0
wordcloud-0
wordcloud-1
wordcloud-2
wrapt-0
wrapt-1
wrapt-2
xgboost-0
xgboost-1
xgboost-2
yarl-0
yarl-1
yarl-2
ydata-profiling-0
ydata-profiling-1
ydata-profiling-2
zipp-0
zipp-1
zipp-2


Total running time of the script: ( 2 minutes 39.772 seconds)

Gallery generated by Sphinx-Gallery