├── .github └── workflows │ └── lint_python.yml ├── .gitignore ├── COPYING ├── Makefile ├── README.rst ├── README_DEV.rst ├── examples ├── async_decorator.py ├── example.py ├── example_undecorated.py ├── exxample_psutil_memory_full_info.py ├── multiprocessing_example.py ├── numpy_example.py ├── plot_memory.py ├── reporting_file.py └── reporting_logger.py ├── images ├── flamegraph.png └── trend_slope.png ├── memory_profiler.py ├── mprof.py ├── pyproject.toml ├── setup.cfg ├── setup.py └── test ├── __init__.py ├── test_as.py ├── test_async.py ├── test_attributes.py ├── test_exception.py ├── test_exit_code.py ├── test_func.py ├── test_gen.py ├── test_global.py ├── test_import.py ├── test_increment_display.py ├── test_loop.py ├── test_loop_decorated.py ├── test_memory_usage.py ├── test_mprof.py ├── test_mprofile.py ├── test_nested.py ├── test_precision_command_line.py ├── test_precision_import.py ├── test_stream_unicode.py ├── test_tracemalloc.py └── test_unicode.py /.github/workflows/lint_python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/.github/workflows/lint_python.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/README.rst -------------------------------------------------------------------------------- /README_DEV.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/README_DEV.rst -------------------------------------------------------------------------------- /examples/async_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/examples/async_decorator.py -------------------------------------------------------------------------------- /examples/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/examples/example.py -------------------------------------------------------------------------------- /examples/example_undecorated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/examples/example_undecorated.py -------------------------------------------------------------------------------- /examples/exxample_psutil_memory_full_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/examples/exxample_psutil_memory_full_info.py -------------------------------------------------------------------------------- /examples/multiprocessing_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/examples/multiprocessing_example.py -------------------------------------------------------------------------------- /examples/numpy_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/examples/numpy_example.py -------------------------------------------------------------------------------- /examples/plot_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/examples/plot_memory.py -------------------------------------------------------------------------------- /examples/reporting_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/examples/reporting_file.py -------------------------------------------------------------------------------- /examples/reporting_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/examples/reporting_logger.py -------------------------------------------------------------------------------- /images/flamegraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/images/flamegraph.png -------------------------------------------------------------------------------- /images/trend_slope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/images/trend_slope.png -------------------------------------------------------------------------------- /memory_profiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/memory_profiler.py -------------------------------------------------------------------------------- /mprof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/mprof.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/setup.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'fabian' 2 | -------------------------------------------------------------------------------- /test/test_as.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/test/test_as.py -------------------------------------------------------------------------------- /test/test_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/test/test_async.py -------------------------------------------------------------------------------- /test/test_attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/test/test_attributes.py -------------------------------------------------------------------------------- /test/test_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/test/test_exception.py -------------------------------------------------------------------------------- /test/test_exit_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/test/test_exit_code.py -------------------------------------------------------------------------------- /test/test_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/test/test_func.py -------------------------------------------------------------------------------- /test/test_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/test/test_gen.py -------------------------------------------------------------------------------- /test/test_global.py: -------------------------------------------------------------------------------- 1 | options = None 2 | 3 | 4 | # test for dc0c8aa60b5960d240b0dcea270efa1e5a314a2c 5 | -------------------------------------------------------------------------------- /test/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/test/test_import.py -------------------------------------------------------------------------------- /test/test_increment_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/test/test_increment_display.py -------------------------------------------------------------------------------- /test/test_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/test/test_loop.py -------------------------------------------------------------------------------- /test/test_loop_decorated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/test/test_loop_decorated.py -------------------------------------------------------------------------------- /test/test_memory_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/test/test_memory_usage.py -------------------------------------------------------------------------------- /test/test_mprof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/test/test_mprof.py -------------------------------------------------------------------------------- /test/test_mprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/test/test_mprofile.py -------------------------------------------------------------------------------- /test/test_nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/test/test_nested.py -------------------------------------------------------------------------------- /test/test_precision_command_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/test/test_precision_command_line.py -------------------------------------------------------------------------------- /test/test_precision_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/test/test_precision_import.py -------------------------------------------------------------------------------- /test/test_stream_unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/test/test_stream_unicode.py -------------------------------------------------------------------------------- /test/test_tracemalloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/test/test_tracemalloc.py -------------------------------------------------------------------------------- /test/test_unicode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pythonprofilers/memory_profiler/HEAD/test/test_unicode.py --------------------------------------------------------------------------------