├── .gitattributes ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── condarecipe ├── bld.bat ├── build.sh └── meta.yaml ├── data_profiler ├── __init__.py ├── _version.py ├── display.py ├── prof.c ├── prof2.c ├── profile.py ├── pstats.py ├── rotatingtree.c ├── rotatingtree.h └── snakeviz │ ├── style.css │ └── template.jinja ├── docs ├── Makefile ├── make.bat ├── quickstart.md └── source │ ├── conf.py │ ├── index.rst │ ├── profiling.png │ └── profiling.rst ├── scripts └── profiler ├── setup.cfg ├── setup.py ├── tests └── test_profiler.py └── versioneer.py /.gitattributes: -------------------------------------------------------------------------------- 1 | data_profiler/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/README.md -------------------------------------------------------------------------------- /condarecipe/bld.bat: -------------------------------------------------------------------------------- 1 | %PYTHON% setup.py install 2 | 3 | -------------------------------------------------------------------------------- /condarecipe/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | $PYTHON setup.py install 4 | 5 | -------------------------------------------------------------------------------- /condarecipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/condarecipe/meta.yaml -------------------------------------------------------------------------------- /data_profiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/data_profiler/__init__.py -------------------------------------------------------------------------------- /data_profiler/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/data_profiler/_version.py -------------------------------------------------------------------------------- /data_profiler/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/data_profiler/display.py -------------------------------------------------------------------------------- /data_profiler/prof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/data_profiler/prof.c -------------------------------------------------------------------------------- /data_profiler/prof2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/data_profiler/prof2.c -------------------------------------------------------------------------------- /data_profiler/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/data_profiler/profile.py -------------------------------------------------------------------------------- /data_profiler/pstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/data_profiler/pstats.py -------------------------------------------------------------------------------- /data_profiler/rotatingtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/data_profiler/rotatingtree.c -------------------------------------------------------------------------------- /data_profiler/rotatingtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/data_profiler/rotatingtree.h -------------------------------------------------------------------------------- /data_profiler/snakeviz/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/data_profiler/snakeviz/style.css -------------------------------------------------------------------------------- /data_profiler/snakeviz/template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/data_profiler/snakeviz/template.jinja -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/docs/quickstart.md -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/profiling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/docs/source/profiling.png -------------------------------------------------------------------------------- /docs/source/profiling.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/docs/source/profiling.rst -------------------------------------------------------------------------------- /scripts/profiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/scripts/profiler -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/tests/test_profiler.py -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/numba/data_profiler/HEAD/versioneer.py --------------------------------------------------------------------------------