gitextract_ip3h_u68/ ├── .github/ │ └── workflows/ │ ├── pylint.yml │ └── python-package.yml ├── .gitignore ├── .pylintrc ├── .readthedocs.yml ├── CITATION.cff ├── Demo.ipynb ├── LICENSE.txt ├── MANIFEST.in ├── README-pypi.md ├── README.md ├── __init__.py ├── benford/ │ ├── __init__.py │ ├── benford.py │ ├── checks.py │ ├── constants.py │ ├── expected.py │ ├── reports.py │ ├── stats.py │ ├── utils.py │ └── viz.py ├── data/ │ └── SPY.csv ├── docs/ │ ├── Makefile │ ├── build/ │ │ ├── doctrees/ │ │ │ ├── api.doctree │ │ │ ├── benford.doctree │ │ │ ├── environment.pickle │ │ │ ├── index.doctree │ │ │ └── modules.doctree │ │ └── html/ │ │ ├── .buildinfo │ │ ├── _modules/ │ │ │ ├── benford/ │ │ │ │ ├── benford.html │ │ │ │ ├── expected.html │ │ │ │ ├── stats.html │ │ │ │ ├── utils.html │ │ │ │ └── viz.html │ │ │ └── index.html │ │ ├── _sources/ │ │ │ ├── api.rst.txt │ │ │ ├── index.rst.txt │ │ │ └── modules.rst.txt │ │ ├── api.html │ │ ├── genindex.html │ │ ├── index.html │ │ ├── modules.html │ │ ├── objects.inv │ │ ├── py-modindex.html │ │ ├── search.html │ │ └── searchindex.js │ ├── make.bat │ ├── requirements.txt │ └── source/ │ ├── api.rst │ ├── conf.py │ ├── index.rst │ └── modules.rst ├── setup.cfg ├── setup.py └── tests/ ├── __init__.py ├── conftest.py ├── test_checks.py ├── test_expected.py ├── test_stats.py └── test_utils.py