gitextract_lfc_djcb/ ├── .github/ │ └── workflows/ │ ├── deploy.yml │ ├── publish.yml │ └── tests.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs/ │ ├── guide/ │ │ ├── dark_mode.md │ │ ├── lineplot_darkmode.md │ │ └── starter.md │ ├── index.md │ └── reference/ │ ├── barhplot.md │ ├── barplot.md │ ├── baseplot.md │ ├── canvas.md │ ├── datafiers/ │ │ ├── bar_datafier.md │ │ ├── base_datafier.md │ │ ├── datafier.md │ │ └── line_datafier.md │ ├── lineplot.md │ └── utils.md ├── examples/ │ ├── __init__.py │ ├── data/ │ │ ├── covid_IN.csv │ │ ├── data.csv │ │ ├── map.csv │ │ └── sample.csv │ ├── example1.py │ ├── example2.py │ ├── example3.py │ ├── lineplot_dark1.py │ └── lineplot_ex1.py ├── mkdocs.yml ├── pyproject.toml ├── requirements.txt ├── setup.py ├── src/ │ └── pynimate/ │ ├── __init__.py │ ├── __init__.pyi │ ├── bar.py │ ├── barhplot.py │ ├── baseplot.py │ ├── canvas.py │ ├── datafier.py │ ├── lineplot.py │ └── utils.py └── tests/ ├── __init__.py ├── conftest.py ├── data/ │ └── map.csv ├── test_bar.py ├── test_barhplot.py ├── test_baseplot.py ├── test_datafier.py ├── test_lineplot.py └── test_utils.py