gitextract_8xf8tglm/ ├── .bumpversion.cfg ├── .circleci/ │ └── config.yml ├── .flake8 ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── main.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE.txt ├── Makefile ├── README.md ├── cheatsheets.tex ├── check-diffs.py ├── check-links.py ├── check-matplotlib-version.py ├── check-num-pages.sh ├── docs/ │ ├── Makefile │ ├── conf.py │ └── index.rst ├── fonts/ │ ├── .gitignore │ └── Makefile ├── handout-beginner.tex ├── handout-intermediate.tex ├── handout-tips.tex ├── logos/ │ └── mpl-logos2.py ├── requirements/ │ ├── Makefile │ ├── requirements.in │ └── requirements.txt ├── scripts/ │ ├── adjustements.py │ ├── advanced-plots.py │ ├── anatomy.py │ ├── animation.py │ ├── annotate.py │ ├── annotation-arrow-styles.py │ ├── annotation-connection-styles.py │ ├── basic-plots.py │ ├── colorbar.py │ ├── colormaps.py │ ├── colornames.py │ ├── colors.py │ ├── extents.py │ ├── fonts.py │ ├── interpolations.py │ ├── layouts.py │ ├── legend.py │ ├── linestyles.py │ ├── markers.py │ ├── performance-tips.py │ ├── plot-variations.py │ ├── projections.py │ ├── scales.py │ ├── sine.py │ ├── styles.py │ ├── text-alignments.py │ ├── tick-formatters.py │ ├── tick-locators.py │ ├── tick-multiple-locator.py │ ├── tip-color-range.py │ ├── tip-colorbar.py │ ├── tip-dotted.py │ ├── tip-dual-axis.py │ ├── tip-font-family.py │ ├── tip-hatched.py │ ├── tip-multiline.py │ ├── tip-outline.py │ ├── tip-post-processing.py │ └── tip-transparency.py └── styles/ ├── base.mplstyle ├── plotlet-grid.mplstyle ├── plotlet.mplstyle ├── sine-plot.mplstyle └── ticks.mplstyle