teeplot
organize data visualization output, automatically picking meaningful names based on semantic plotting variables
Science Score: 67.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 8 DOI reference(s) in README -
✓Academic publication links
Links to: zenodo.org -
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (16.5%) to scientific vocabulary
Keywords
data-science
data-visualization
python
python-package
workflow
Last synced: 6 months ago
·
JSON representation
·
Repository
organize data visualization output, automatically picking meaningful names based on semantic plotting variables
Basic Info
Statistics
- Stars: 12
- Watchers: 1
- Forks: 0
- Open Issues: 1
- Releases: 1
Topics
data-science
data-visualization
python
python-package
workflow
Created almost 5 years ago
· Last pushed 12 months ago
Metadata Files
Readme
Contributing
License
Citation
Authors
README.rst
.. figure:: docs/assets/teeplot-wordmark.png
:target: https://github.com/mmore500/teeplot
:alt: teeplot wordmark
*teeplot* wrangles your data visualizations out of notebooks for you
--------------------------------------------------------------------
|PyPi| |docs| |GitHub stars| |CI| |zenodo|
* Free software: MIT license
* Installation: ``python3 -m pip install teeplot``
* Documentation: https://github.com/mmore500/teeplot/blob/master/README.rst
* Repository: https://github.com/mmore500/teeplot
*teeplot*'s ``tee`` function can wrap your plotting calls to **automatically manage matplotlib file output**, picking meaningful names based on semantic plotting variables.
.. code-block:: python
# adapted from https://seaborn.pydata.org/generated/seaborn.FacetGrid.html#seaborn.FacetGrid
import seaborn as sns; from teeplot import teeplot as tp
tp.tee(sns.lmplot, # plotter
sns.load_dataset("tips"), col="time", hue="sex", x="total_bill", y="tip", # fwded kw/args
teeplot_postprocess=sns.FacetGrid.add_legend) # teeplot options
..
..
.. code-block::
teeplots/col=time+hue=sex+post=add_legend+viz=lmplot+x=total-bill+y=tip+ext=.pdf
teeplots/col=time+hue=sex+post=add_legend+viz=lmplot+x=total-bill+y=tip+ext=.png
.. image:: docs/assets/col=time+hue=sex+post=add_legend+viz=lmplot+x=total-bill+y=tip+ext=_padded.png
**Here's how it works:** *teeplot*'s ``tee`` function that acts as a wrapper around your plotting calls.
Give ``tee`` your plotting function (e.g., ``sns.lineplot``) as the first argument and then add the arguments you want to call it with.
*teeplot* automatically captures the function and its arguments, calls the plotter as instructed, and then it handles the matplotlib file output for you.
It generates descriptive filenames for the saved plots by extracting key information from the plot parameters and arguments.
This feature allows you to *keep track of your visualizations easily* by making the process of saving and cataloging your plots more *efficient*, *systematic* and *meaningful*, taking the hassle out of manual file management.
*teeplot* contains several advanced features, such as a ``draftmode`` flag, which will disable file output globally, and the ``teeplot_callback`` kwarg, which delays plot output to allow for figure tweaks.
Read on for details.
Contents
--------
- **Usage** : `Example 1 <#example-1>`_ | `Example 2 <#example-2>`_ | `Example 3 <#example-3>`_ | `Example 4 <#example-4>`_ | `Example 5 <#example-5>`_
- **API** : `teeplot.tee() <#teeplottee>`_ | `Module-Level Configuration <#module-level-configuration>`_ | `Environment Variables <#environment-variables>`_
- **Citing** `here <#citing>`_ | **Credits** `link <#credits>`_
Usage
-----
Example 1
^^^^^^^^^
Simple example demonstrating use with *pandas* built-in plotting.
.. code-block:: python
# adapted from https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.plot.box.html
import pandas as pd; from teeplot import teeplot as tp
age_list = [8, 10, 12, 14, 72, 74, 76, 78, 20, 25, 30, 35, 60, 85]
df = pd.DataFrame({"gender": list("MMMMMMMMFFFFFF"), "age": age_list})
tp.tee(df.plot.box, # plotter...
column="age", by="gender", figsize=(4, 3)) # ...forwarded kwargs
..
..
.. code-block::
teeplots/by=gender+column=age+viz=box+ext=.pdf
teeplots/by=gender+column=age+viz=box+ext=.png
.. image:: docs/assets/by=gender+column=age+viz=box+ext=_padded.png
----
Example 2
^^^^^^^^^
Example with *seaborn* showing use of ``teed`` context manager interface to allow for plot tweaks before saving.
.. code-block:: python
# adapted from https://seaborn.pydata.org/examples/horizontal_boxplot.html
from matplotlib import pyplot as plt
import seaborn as sns
from teeplot import teeplot as tp
with tp.teed( # plot is finalized upon leaving context
sns.boxplot, # plotter...
sns.load_dataset("planets"), # ...forwarded arg & kwargs
x="distance", y="method", hue="method", palette="vlag",
whis=[0, 100], width=.6, # ... and then teeplot options
teeplot_callback=True, teeplot_postprocess="teed.set_xscale('log')"
) as ax:
ax.xaxis.grid(True) # now some tweaks
ax.set(ylabel="")
sns.despine()
plt.gcf().set_size_inches(10, 4)
..
..
.. code-block::
teeplots/hue=method+palette=vlag+post=teed-set-xscale-log+viz=boxplot+x=distance+y=method+ext=.pdf
teeplots/hue=method+palette=vlag+post=teed-set-xscale-log+viz=boxplot+x=distance+y=method+ext=.png
.. image:: docs/assets/hue=method+palette=vlag+post=teed-set-xscale-log+viz=boxplot+x=distance+y=method+ext=_padded.png
----
Example 3
^^^^^^^^^
Example with matplotlib, showing alternate ``teeplot_callback`` kwarg interface.
We've also used the global configuration option ``save`` to change default output format.
.. code-block:: python
# adapted from https://matplotlib.org/stable/tutorials/pyplot.html
from matplotlib import pyplot as plt
import numpy as np; from teeplot import teeplot as tp
tp.save = {".eps": True} # make default output only .eps
data = {'a': np.arange(50), 'c': np.random.randint(0, 50, 50),
'd': np.random.randn(50)}
data['b'], data['d'] = data['a'] + 10 * np.random.randn(50), np.abs(data['d']) * 100
saveit, __ = tp.tee( # create a callback object to finalize plot
plt.scatter, # plotter...
data=data, x='a', y='b', c='c', s='d', # ...forwarded kwargs
teeplot_callback=True) # teeplot options
plt.xlabel('entry a') # now some tweaks
plt.ylabel('entry b')
plt.gcf().set_size_inches(5, 3)
saveit() # dispatch output callback
..
..
.. code-block::
teeplots/c=c+s=d+viz=scatter+x=a+y=b+ext=.eps
.. image:: docs/assets/c=c+s=d+viz=scatter+x=a+y=b+ext=_padded.png
----
Example 4
^^^^^^^^^
Example with *seaborn* ``FacetGrid`` demonstrating use of ``exec``'ed ``teeplot_postprocess`` that adds a ``map_dataframe`` step over the ``teed`` result value and also results in additional semantic information being added to plot filenames (under the "``post=``" key).
.. code-block:: python
# adapted from https://seaborn.pydata.org/generated/seaborn.FacetGrid.html#seaborn.FacetGrid
import seaborn as sns
from teeplot import teeplot as tp
tp.tee(
sns.FacetGrid, # plotter...
sns.load_dataset("tips"), # ...forwarded args & kwwargs
col="time", hue="sex", aspect=1.5,
teeplot_postprocess="teed.map_dataframe(sns.scatterplot, x='total_bill', y='tip')")
..
..
.. code-block::
teeplots/col=time+hue=sex+post=teed-map-dataframe-sns-scatterplot-x-total-bill-y-tip+viz=facetgrid+ext=.pdf
teeplots/col=time+hue=sex+post=teed-map-dataframe-sns-scatterplot-x-total-bill-y-tip+viz=facetgrid+ext=.png
.. image:: docs/assets/col=time+hue=sex+post=teed-map-dataframe-sns-scatterplot-x-total-bill-y-tip+viz=facetgrid+ext=_padded.png
----
Example 5
^^^^^^^^^
Demonstration of teeplot use with a custom function.
Note the function name automatically used as "``viz=``" key in output filenames.
.. code-block:: python
# adapted from https://seaborn.pydata.org/examples/pairgrid_dotplot.html
import seaborn as sns; from teeplot import teeplot as tp
df = sns.load_dataset("car_crashes")
def dot_plot(data, x_vars, y_vars): # custom plotter
g = sns.PairGrid(data.sort_values("total", ascending=False),
x_vars=x_vars, y_vars=y_vars,
height=5, aspect=0.66)
g.map(sns.stripplot, size=10, orient="h", jitter=False,
palette="flare_r", linewidth=1, edgecolor="w")
for ax in g.axes.flat:
ax.xaxis.grid(False)
ax.yaxis.grid(True)
tp.tee(
dot_plot, # plotter, then forwarded args/kwargs
df[df["abbrev"].str.contains("A")], x_vars=df.columns[:-3], y_vars=["abbrev"],
teeplot_outinclude=["x_vars", "y_vars"], teeplot_save={".eps", ".png"})
..
..
.. code-block::
teeplots/viz=dot-plot+x-vars=index-total-speeding-alcohol-not-distracted-no-previous-dtype-object+y-vars=abbrev+ext=.eps
teeplots/viz=dot-plot+x-vars=index-total-speeding-alcohol-not-distracted-no-previous-dtype-object+y-vars=abbrev+ext=.png
.. image:: docs/assets/viz=dot-plot+x-vars=index-total-speeding-alcohol-not-distracted-no-previous-dtype-object+y-vars=abbrev+ext=_padded.png
----
Further Examples
^^^^^^^^^^^^^^^^
Find more examples and use cases `on medium `_.
API
---
``teeplot.tee()``
^^^^^^^^^^^^^^^^^
Executes a plotting function and saves the resulting plot to specified formats using a descriptive filename automatically generated from plotting function arguments.
+----------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Parameter | Description |
+============================+==========================================================================================================================================================================================================================================+
| ``plotter`` | The plotting function to be executed. *Required.* |
+----------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| *Additional args & kwargs* | Forwarded to the plotting function and used to build the output filename. |
+----------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| ``teeplot_callback`` | If True, returns a tuple with a callback to dispatch plot save instead of immediately saving the plot after running the plotter. Default is False. |
+----------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| ``teeplot_dpi`` | Resolution for rasterized components of saved plots, default is publication-quality 300 dpi. |
+----------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| ``teeplot_oncollision`` | Strategy for handling filename collisions: "error", "fix", "ignore", or "warn", default "warn"; inferred from environment if not specified. |
+----------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| ``teeplot_outattrs`` | Dict with additional key-value attributes to include in the output filename. |
+----------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| ``teeplot_outdir`` | Base directory for saving plots, default "teeplots". |
+----------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| ``teeplot_outinclude`` | Attribute keys to always include, if present, in the output filename. |
+----------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| ``teeplot_outexclude`` | Attribute keys to always exclude, if present, from the output filename. |
+----------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| ``teeplot_postprocess`` | Actions to perform after plotting but before saving. Can be a string of code to ``exec`` or a callable function. If a string, it's executed with access to ``plt`` and ``sns`` (if installed), and the plotter return value as ``teed``. |
+----------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| ``teeplot_save`` | File formats to save the plots in. Defaults to global settings if ``True``, all output suppressed if ``False``. Default global setting is ``{" .png", ".pdf"}``. Supported: ".eps", ".png", ".pdf", ".pgf", ".ps", ".svg". |
+----------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| ``teeplot_show`` | Dictates whether ``plt.show()`` should be called after plot is saved. If True, the plot is displayed using ``plt.show()``. Default behavior is to display if an interactive environment is detected (e.g., a notebook). |
+----------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| ``teeplot_subdir`` | Optionally, subdirectory within the main output directory for plot organization. |
+----------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| ``teeplot_transparent`` | Option to save the plot with a transparent background, default True. |
+----------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| ``teeplot_verbose`` | Toggles printing of saved filenames, default True. |
+----------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
**Return Value**: returned result from plotter call if ``teeplot_callback`` is ``False``, otherwise tuple of save-plot callback and result from plotter call.
Module-Level Configuration
^^^^^^^^^^^^^^^^^^^^^^^^^^
- ``teeplot.draftmode``: A boolean indicating whether to suppress output to all file formats.
- ``teeplot.oncollision``: Default strategy for handling filename collisions, options are 'error', 'fix', 'ignore', or 'warn'.
- ``teeplot.save``: A dictionary mapping file formats (e.g., ".png") to default save behavior as ``True`` (always output), ``False`` (never output), or ``None`` (defer to call kwargs).
Environment Variables
^^^^^^^^^^^^^^^^^^^^^
- ``TEEPLOT_ONCOLLISION``: Configures the default collision handling strategy. See ``teeplot_oncollision`` kwarg
- ``TEEPLOT_DRAFTMODE``: If set, enables draft mode globally.
- ``TEEPLOT_``: Boolean flags that determine default behavior for each format (e.g., ``EPS``, ``PNG``, ``PDF``, ``PGF``, ``PS``, ``SVG``); "defer" defers to call kwargs.
Citing
------
If *teeplot* contributes to a scholarly publication, please cite it as
Matthew Andres Moreno. (2023). mmore500/teeplot. Zenodo. https://doi.org/10.5281/zenodo.10440670
.. code:: bibtex
@software{moreno2023teeplot,
author = {Matthew Andres Moreno},
title = {mmore500/teeplot},
month = dec,
year = 2023,
publisher = {Zenodo},
doi = {10.5281/zenodo.10440670},
url = {https://doi.org/10.5281/zenodo.10440670}
}
And don't forget to leave a `star on GitHub `__!
Credits
-------
Output filenames are constructed using the `keyname `_ package.
This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.
.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage
.. |PyPi| image:: https://img.shields.io/pypi/v/teeplot.svg
:target: https://pypi.python.org/pypi/teeplot
.. |CI| image:: https://github.com/mmore500/teeplot/actions/workflows/CI.yml/badge.svg
:target: https://github.com/mmore500/teeplot/actions
.. |GitHub stars| image:: https://img.shields.io/github/stars/mmore500/teeplot.svg?style=round-square&logo=github&label=Stars&logoColor=white
:target: https://github.com/mmore500/teeplot
.. |docs| image:: https://img.shields.io/badge/docs%20-%20readme%20-%20fedcba?logo=github
:target: https://github.com/mmore500/teeplot/blob/master/README.rst
.. |zenodo| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.10440670.svg
:target: https://doi.org/10.5281/zenodo.10440670
Owner
- Name: Matthew Andres Moreno
- Login: mmore500
- Kind: user
- Location: East Lansing, MI
- Company: @devosoft
- Website: mmore500.github.io
- Twitter: MorenoMathewA
- Repositories: 43
- Profile: https://github.com/mmore500
doctoral student, Computer Science and Engineering at Michigan State University
Citation (CITATION.cff)
cff-version: 1.1.0 message: "If you use this software, please cite it as below." title: 'teeplot: a Python library to wrangle data visualizations' abstract: "Organize data visualization output, automatically picking meaningful filenames based on semantic plotting variables." authors: - family-names: Moreno given-names: Matthew Andres orcid: 0000-0003-4726-4479 date-released: 2023-12-29 doi: 10.5281/zenodo.10440670 license: MIT repository-code: https://github.com/mmore500/teeplot url: "https://github.com/mmore500/teeplot" version: v1.0.1
GitHub Events
Total
- Watch event: 2
- Delete event: 3
- Issue comment event: 2
- Member event: 1
- Push event: 29
- Pull request review event: 7
- Pull request review comment event: 8
- Pull request event: 5
- Create event: 9
Last Year
- Watch event: 2
- Delete event: 3
- Issue comment event: 2
- Member event: 1
- Push event: 29
- Pull request review event: 7
- Pull request review comment event: 8
- Pull request event: 5
- Create event: 9
Committers
Last synced: 10 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Matthew Andres Moreno | m****g@g****m | 159 |
| vivaansinghvi07 | s****n@g****m | 18 |
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 4
- Total pull requests: 8
- Average time to close issues: 10 months
- Average time to close pull requests: about 11 hours
- Total issue authors: 1
- Total pull request authors: 2
- Average comments per issue: 0.0
- Average comments per pull request: 0.5
- Merged pull requests: 8
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 2
- Pull requests: 7
- Average time to close issues: 11 minutes
- Average time to close pull requests: about 12 hours
- Issue authors: 1
- Pull request authors: 2
- Average comments per issue: 0.0
- Average comments per pull request: 0.57
- Merged pull requests: 7
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- mmore500 (4)
Pull Request Authors
- mmore500 (8)
- vivaansinghvi07 (2)
Top Labels
Issue Labels
Pull Request Labels
Dependencies
.github/workflows/CI.yml
actions
- actions/checkout v1 composite
- actions/setup-python v2 composite
- pypa/gh-action-pypi-publish release/v1 composite
setup.py
pypi
requirements/requirements_dev-mypy.txt
pypi
- alabaster ==0.7.13 development
- argh ==0.28.1 development
- attrs ==22.2.0 development
- babel ==2.12.1 development
- bleach ==6.0.0 development
- bump2version ==0.5.11 development
- certifi ==2022.12.7 development
- charset-normalizer ==3.1.0 development
- click ==8.1.3 development
- contourpy ==1.1.1 development
- coverage ==4.5.4 development
- cycler ==0.11.0 development
- decorator ==5.1.1 development
- distlib ==0.3.6 development
- distutils-strtobool ==0.1.0 development
- docutils ==0.19 development
- entrypoints ==0.3 development
- exceptiongroup ==1.1.0 development
- filelock ==3.4.1 development
- flake8 ==3.7.8 development
- fonttools ==4.47.0 development
- idna ==3.4 development
- imagesize ==1.4.1 development
- importlib-metadata ==4.8.3 development
- importlib-resources ==6.1.1 development
- iniconfig ==2.0.0 development
- jinja2 ==3.1.2 development
- keyname ==0.6.0 development
- kiwisolver ==1.4.4 development
- markupsafe ==2.0.1 development
- matplotlib ==3.7.4 development
- mccabe ==0.6.1 development
- more-itertools ==9.1.0 development
- numpy ==1.24.2 development
- packaging ==23.0 development
- pandas ==1.1.2 development
- pathtools ==0.1.2 development
- pillow ==9.4.0 development
- pkginfo ==1.9.6 development
- platformdirs ==2.4.0 development
- pluggy ==0.13.1 development
- py ==1.11.0 development
- pycodestyle ==2.5.0 development
- pyflakes ==2.1.1 development
- pygments ==2.14.0 development
- pyparsing ==3.0.9 development
- pytest ==7.2.2 development
- python-dateutil ==2.8.2 development
- python-slugify ==4.0.1 development
- pytz ==2022.7.1 development
- pyyaml ==6.0 development
- readme-renderer ==37.3 development
- requests ==2.28.2 development
- requests-toolbelt ==0.10.1 development
- retry ==0.9.2 development
- scipy ==1.10.1 development
- seaborn ==0.11.2 development
- six ==1.16.0 development
- snowballstemmer ==2.2.0 development
- sphinx ==1.8.5 development
- sphinxcontrib-serializinghtml ==1.1.5 development
- sphinxcontrib-websupport ==1.2.4 development
- text-unidecode ==1.3 development
- tomli ==2.0.1 development
- tox ==3.26.0 development
- tqdm ==4.65.0 development
- twine ==1.14.0 development
- typing-extensions ==3.10.0.2 development
- urllib3 ==1.26.15 development
- virtualenv ==20.20.0 development
- watchdog ==0.9.0 development
- webencodings ==0.5.1 development
- wheel ==0.33.6 development
- zipp ==3.6.0 development
requirements/requirements_dev-py310.txt
pypi
- alabaster ==0.7.13 development
- argh ==0.28.1 development
- attrs ==22.2.0 development
- babel ==2.12.1 development
- bleach ==6.0.0 development
- bump2version ==0.5.11 development
- certifi ==2022.12.7 development
- charset-normalizer ==3.1.0 development
- click ==8.1.3 development
- contourpy ==1.2.0 development
- coverage ==4.5.4 development
- cycler ==0.11.0 development
- decorator ==5.1.1 development
- distlib ==0.3.6 development
- distutils-strtobool ==0.1.0 development
- docutils ==0.19 development
- entrypoints ==0.3 development
- exceptiongroup ==1.1.0 development
- filelock ==3.4.1 development
- flake8 ==3.7.8 development
- fonttools ==4.47.0 development
- idna ==3.4 development
- imagesize ==1.4.1 development
- importlib-metadata ==4.8.3 development
- iniconfig ==2.0.0 development
- jinja2 ==3.1.2 development
- keyname ==0.6.0 development
- kiwisolver ==1.4.4 development
- markupsafe ==2.0.1 development
- matplotlib ==3.8.2 development
- mccabe ==0.6.1 development
- more-itertools ==9.1.0 development
- numpy ==1.24.2 development
- packaging ==23.0 development
- pandas ==1.5.3 development
- pathtools ==0.1.2 development
- pillow ==9.4.0 development
- pkginfo ==1.9.6 development
- platformdirs ==2.4.0 development
- pluggy ==0.13.1 development
- py ==1.11.0 development
- pycodestyle ==2.5.0 development
- pyflakes ==2.1.1 development
- pygments ==2.14.0 development
- pyparsing ==3.0.9 development
- pytest ==7.2.2 development
- python-dateutil ==2.8.2 development
- python-slugify ==4.0.1 development
- pytz ==2022.7.1 development
- pyyaml ==6.0 development
- readme-renderer ==37.3 development
- requests ==2.28.2 development
- requests-toolbelt ==0.10.1 development
- retry ==0.9.2 development
- scipy ==1.10.1 development
- seaborn ==0.11.2 development
- six ==1.16.0 development
- snowballstemmer ==2.2.0 development
- sphinx ==1.8.5 development
- sphinxcontrib-serializinghtml ==1.1.5 development
- sphinxcontrib-websupport ==1.2.4 development
- text-unidecode ==1.3 development
- tomli ==2.0.1 development
- tox ==3.26.0 development
- tqdm ==4.65.0 development
- twine ==1.14.0 development
- typing-extensions ==3.10.0.2 development
- urllib3 ==1.26.15 development
- virtualenv ==20.20.0 development
- watchdog ==0.9.0 development
- webencodings ==0.5.1 development
- wheel ==0.33.6 development
- zipp ==3.6.0 development
requirements/requirements_dev-py311.txt
pypi
- alabaster ==0.7.13 development
- argh ==0.28.1 development
- attrs ==22.2.0 development
- babel ==2.12.1 development
- bleach ==6.0.0 development
- bump2version ==0.5.11 development
- certifi ==2022.12.7 development
- charset-normalizer ==3.1.0 development
- click ==8.1.3 development
- contourpy ==1.2.0 development
- coverage ==4.5.4 development
- cycler ==0.11.0 development
- decorator ==5.1.1 development
- distlib ==0.3.6 development
- distutils-strtobool ==0.1.0 development
- docutils ==0.19 development
- entrypoints ==0.3 development
- filelock ==3.4.1 development
- flake8 ==3.7.8 development
- fonttools ==4.47.0 development
- idna ==3.4 development
- imagesize ==1.4.1 development
- importlib-metadata ==4.8.3 development
- iniconfig ==2.0.0 development
- jinja2 ==3.1.2 development
- keyname ==0.6.0 development
- kiwisolver ==1.4.4 development
- markupsafe ==2.0.1 development
- matplotlib ==3.8.2 development
- mccabe ==0.6.1 development
- more-itertools ==9.1.0 development
- numpy ==1.24.2 development
- packaging ==23.0 development
- pandas ==1.5.3 development
- pathtools ==0.1.2 development
- pillow ==9.4.0 development
- pkginfo ==1.9.6 development
- platformdirs ==2.4.0 development
- pluggy ==0.13.1 development
- py ==1.11.0 development
- pycodestyle ==2.5.0 development
- pyflakes ==2.1.1 development
- pygments ==2.14.0 development
- pyparsing ==3.0.9 development
- pytest ==7.2.2 development
- python-dateutil ==2.8.2 development
- python-slugify ==4.0.1 development
- pytz ==2022.7.1 development
- pyyaml ==6.0 development
- readme-renderer ==37.3 development
- requests ==2.28.2 development
- requests-toolbelt ==0.10.1 development
- retry ==0.9.2 development
- scipy ==1.10.1 development
- seaborn ==0.11.2 development
- six ==1.16.0 development
- snowballstemmer ==2.2.0 development
- sphinx ==1.8.5 development
- sphinxcontrib-serializinghtml ==1.1.5 development
- sphinxcontrib-websupport ==1.2.4 development
- text-unidecode ==1.3 development
- tox ==3.26.0 development
- tqdm ==4.65.0 development
- twine ==1.14.0 development
- typing-extensions ==3.10.0.2 development
- urllib3 ==1.26.15 development
- virtualenv ==20.20.0 development
- watchdog ==0.9.0 development
- webencodings ==0.5.1 development
- wheel ==0.33.6 development
- zipp ==3.6.0 development
requirements/requirements_dev-py37.txt
pypi
- alabaster ==0.7.13 development
- argh ==0.27.2 development
- attrs ==22.2.0 development
- babel ==2.12.1 development
- bleach ==6.0.0 development
- bump2version ==0.5.11 development
- certifi ==2022.12.7 development
- charset-normalizer ==3.1.0 development
- click ==8.1.3 development
- coverage ==4.5.4 development
- cycler ==0.11.0 development
- decorator ==5.1.1 development
- distlib ==0.3.6 development
- distutils-strtobool ==0.1.0 development
- docutils ==0.19 development
- entrypoints ==0.3 development
- exceptiongroup ==1.1.0 development
- filelock ==3.4.1 development
- flake8 ==3.7.8 development
- fonttools ==4.38.0 development
- idna ==3.4 development
- imagesize ==1.4.1 development
- importlib-metadata ==4.8.3 development
- iniconfig ==2.0.0 development
- jinja2 ==3.1.2 development
- keyname ==0.6.0 development
- kiwisolver ==1.4.4 development
- markupsafe ==2.0.1 development
- matplotlib ==3.5.3 development
- mccabe ==0.6.1 development
- more-itertools ==9.1.0 development
- numpy ==1.21.6 development
- packaging ==23.0 development
- pandas ==1.1.2 development
- pathtools ==0.1.2 development
- pillow ==9.4.0 development
- pkginfo ==1.9.6 development
- platformdirs ==2.4.0 development
- pluggy ==0.13.1 development
- py ==1.11.0 development
- pycodestyle ==2.5.0 development
- pyflakes ==2.1.1 development
- pygments ==2.14.0 development
- pyparsing ==3.0.9 development
- pytest ==7.2.2 development
- python-dateutil ==2.8.2 development
- python-slugify ==4.0.1 development
- pytz ==2022.7.1 development
- pyyaml ==6.0 development
- readme-renderer ==37.3 development
- requests ==2.28.2 development
- requests-toolbelt ==0.10.1 development
- retry ==0.9.2 development
- scipy ==1.7.3 development
- seaborn ==0.11.2 development
- six ==1.16.0 development
- snowballstemmer ==2.2.0 development
- sphinx ==1.8.5 development
- sphinxcontrib-serializinghtml ==1.1.5 development
- sphinxcontrib-websupport ==1.2.4 development
- text-unidecode ==1.3 development
- tomli ==2.0.1 development
- tox ==3.26.0 development
- tqdm ==4.65.0 development
- twine ==1.14.0 development
- typing-extensions ==3.10.0.2 development
- urllib3 ==1.26.15 development
- virtualenv ==20.20.0 development
- watchdog ==0.9.0 development
- webencodings ==0.5.1 development
- wheel ==0.33.6 development
- zipp ==3.6.0 development
requirements/requirements_dev-py38.txt
pypi
- alabaster ==0.7.13 development
- argh ==0.28.1 development
- attrs ==22.2.0 development
- babel ==2.12.1 development
- bleach ==6.0.0 development
- bump2version ==0.5.11 development
- certifi ==2022.12.7 development
- charset-normalizer ==3.1.0 development
- click ==8.1.3 development
- contourpy ==1.1.1 development
- coverage ==4.5.4 development
- cycler ==0.11.0 development
- decorator ==5.1.1 development
- distlib ==0.3.6 development
- distutils-strtobool ==0.1.0 development
- docutils ==0.19 development
- entrypoints ==0.3 development
- exceptiongroup ==1.1.0 development
- filelock ==3.4.1 development
- flake8 ==3.7.8 development
- fonttools ==4.47.0 development
- idna ==3.4 development
- imagesize ==1.4.1 development
- importlib-metadata ==4.8.3 development
- importlib-resources ==6.1.1 development
- iniconfig ==2.0.0 development
- jinja2 ==3.1.2 development
- keyname ==0.6.0 development
- kiwisolver ==1.4.4 development
- markupsafe ==2.0.1 development
- matplotlib ==3.7.4 development
- mccabe ==0.6.1 development
- more-itertools ==9.1.0 development
- numpy ==1.24.2 development
- packaging ==23.0 development
- pandas ==1.1.2 development
- pathtools ==0.1.2 development
- pillow ==9.4.0 development
- pkginfo ==1.9.6 development
- platformdirs ==2.4.0 development
- pluggy ==0.13.1 development
- py ==1.11.0 development
- pycodestyle ==2.5.0 development
- pyflakes ==2.1.1 development
- pygments ==2.14.0 development
- pyparsing ==3.0.9 development
- pytest ==7.2.2 development
- python-dateutil ==2.8.2 development
- python-slugify ==4.0.1 development
- pytz ==2022.7.1 development
- pyyaml ==6.0 development
- readme-renderer ==37.3 development
- requests ==2.28.2 development
- requests-toolbelt ==0.10.1 development
- retry ==0.9.2 development
- scipy ==1.10.1 development
- seaborn ==0.11.2 development
- six ==1.16.0 development
- snowballstemmer ==2.2.0 development
- sphinx ==1.8.5 development
- sphinxcontrib-serializinghtml ==1.1.5 development
- sphinxcontrib-websupport ==1.2.4 development
- text-unidecode ==1.3 development
- tomli ==2.0.1 development
- tox ==3.26.0 development
- tqdm ==4.65.0 development
- twine ==1.14.0 development
- typing-extensions ==3.10.0.2 development
- urllib3 ==1.26.15 development
- virtualenv ==20.20.0 development
- watchdog ==0.9.0 development
- webencodings ==0.5.1 development
- wheel ==0.33.6 development
- zipp ==3.6.0 development
requirements/requirements_dev-py39.txt
pypi
- alabaster ==0.7.13 development
- argh ==0.28.1 development
- attrs ==22.2.0 development
- babel ==2.12.1 development
- bleach ==6.0.0 development
- bump2version ==0.5.11 development
- certifi ==2022.12.7 development
- charset-normalizer ==3.1.0 development
- click ==8.1.3 development
- contourpy ==1.2.0 development
- coverage ==4.5.4 development
- cycler ==0.11.0 development
- decorator ==5.1.1 development
- distlib ==0.3.6 development
- distutils-strtobool ==0.1.0 development
- docutils ==0.19 development
- entrypoints ==0.3 development
- exceptiongroup ==1.1.0 development
- filelock ==3.4.1 development
- flake8 ==3.7.8 development
- fonttools ==4.47.0 development
- idna ==3.4 development
- imagesize ==1.4.1 development
- importlib-metadata ==4.8.3 development
- importlib-resources ==6.1.1 development
- iniconfig ==2.0.0 development
- jinja2 ==3.1.2 development
- keyname ==0.6.0 development
- kiwisolver ==1.4.4 development
- markupsafe ==2.0.1 development
- matplotlib ==3.8.2 development
- mccabe ==0.6.1 development
- more-itertools ==9.1.0 development
- numpy ==1.24.2 development
- packaging ==23.0 development
- pandas ==1.5.3 development
- pathtools ==0.1.2 development
- pillow ==9.4.0 development
- pkginfo ==1.9.6 development
- platformdirs ==2.4.0 development
- pluggy ==0.13.1 development
- py ==1.11.0 development
- pycodestyle ==2.5.0 development
- pyflakes ==2.1.1 development
- pygments ==2.14.0 development
- pyparsing ==3.0.9 development
- pytest ==7.2.2 development
- python-dateutil ==2.8.2 development
- python-slugify ==4.0.1 development
- pytz ==2022.7.1 development
- pyyaml ==6.0 development
- readme-renderer ==37.3 development
- requests ==2.28.2 development
- requests-toolbelt ==0.10.1 development
- retry ==0.9.2 development
- scipy ==1.10.1 development
- seaborn ==0.11.2 development
- six ==1.16.0 development
- snowballstemmer ==2.2.0 development
- sphinx ==1.8.5 development
- sphinxcontrib-serializinghtml ==1.1.5 development
- sphinxcontrib-websupport ==1.2.4 development
- text-unidecode ==1.3 development
- tomli ==2.0.1 development
- tox ==3.26.0 development
- tqdm ==4.65.0 development
- twine ==1.14.0 development
- typing-extensions ==3.10.0.2 development
- urllib3 ==1.26.15 development
- virtualenv ==20.20.0 development
- watchdog ==0.9.0 development
- webencodings ==0.5.1 development
- wheel ==0.33.6 development
- zipp ==3.6.0 development
requirements/requirements_dev.in
pypi
- Sphinx ==1.8.5 development
- bump2version ==0.5.11 development
- coverage >=4.5.4 development
- distutils-strtobool ==0.1.0 development
- filelock ==3.4.1 development
- flake8 ==3.7.8 development
- importlib-metadata ==4.8.3 development
- keyname ==0.6.0 development
- markupsafe ==2.0.1 development
- matplotlib >=3.5.3 development
- platformdirs ==2.4.0 development
- pytest ==7.2.2 development
- python-slugify >=4.0.1 development
- seaborn ==0.11.2 development
- tox ==3.26.0 development
- twine ==1.14.0 development
- typing-extensions ==3.10.0.2 development
- watchdog >=0.9.0 development
- wheel ==0.33.6 development
- zipp ==3.6.0 development