├── .gitignore ├── README.md ├── custom_profiler_demo.py ├── line_profiler_demo.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glow-Inc/PythonProfilerDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glow-Inc/PythonProfilerDemo/HEAD/README.md -------------------------------------------------------------------------------- /custom_profiler_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glow-Inc/PythonProfilerDemo/HEAD/custom_profiler_demo.py -------------------------------------------------------------------------------- /line_profiler_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Glow-Inc/PythonProfilerDemo/HEAD/line_profiler_demo.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | redis 2 | requests 3 | tabulate 4 | --------------------------------------------------------------------------------