gitextract_a1_r2osh/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── documentation_fix.md │ │ ├── new_examples.md │ │ └── new_proposed_feature.md │ └── pull_request_template.md ├── .gitignore ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── TODO.rst ├── docs/ │ ├── Makefile │ ├── conf.py │ ├── contributing.rst │ ├── index.rst │ ├── installation.rst │ ├── modules.rst │ ├── pandas_log.rst │ ├── readme.rst │ └── usage.rst ├── examples/ │ ├── README.rst │ ├── __init__.py │ ├── pandas_log_intro.ipynb │ └── pokemon.csv ├── pandas_log/ │ ├── __init__.py │ ├── aop_utils.py │ ├── pandas_execution_stats.py │ ├── pandas_log.py │ ├── patched_logs_functions.py │ └── settings.py ├── requirements_dev.txt ├── setup.cfg ├── setup.py └── tox.ini