FuncProfiler
An open-source Python library for identifying bottlenecks in code. It includes function profiling, data exports, logging, and line-by-line profiling for more granular control.
Changelog (v.1.2.0):
- Significant performance improvements for both function and line-by-line profiling.
- Cached function metadata at decoration time to reduce overhead during execution.
- Optimized line-by-line tracing using code object identity comparison.
- Implemented buffered logging for shared logs to minimize frequent file I/O.
- Improved trace accuracy by properly capturing the final line's execution time.
- Refactored export logic for more efficient report generation.
Changelog (v.1.1.0):
- Added support for 2 new export formats:
yamlandtoml. - Exports now include more information: peak memory usage, timestamp, arguments, return value, filepath, line number, and docstring.
- Added
enabledandlog_leveloptions to the decorators. - Improved export formats for better readability.
Installation
You can install FuncProfiler using pip:
pip install funcprofiler
Supported Python Versions
FuncProfiler supports Python 3.6 and later.
Features
- Function Profiling: Monitor a function's memory usage and execution time.
- Line-by-Line Profiling: Get execution time and memory usage for each line of a function.
- Shared Logging: Log profiler outputs to a
.txtfile. - File Exports: Export profiling data in various formats.
- New Options:
enabled: A boolean to enable or disable profiling.log_level: Set the logging level to "info" or "debug".
Export Formats
| Format | function_profile |
line_by_line_profile |
|---|---|---|
txt |
✅ | ❌ |
json |
✅ | ✅ |
csv |
✅ | ✅ |
html |
✅ | ✅ |
xml |
✅ | ✅ |
md |
✅ | ✅ |
yaml |
✅ | ✅ |
toml |
✅ | ✅ |
Usage
Function Profiling
from funcprofiler import function_profile
@function_profile(export_format="html", shared_log=True, log_level="debug")
def some_function():
return "Hello World."
message = some_function()
Line-by-Line Profiling
from funcprofiler import line_by_line_profile
@line_by_line_profile(shared_log=True, enabled=True)
def some_complicated_function(n):
total = 0
for i in range(n):
for j in range(i):
total += (i * j) ** 0.5
return total
total = some_complicated_function(1000)
Contributing
Contributions are welcome! Please open an issue or submit a pull request on GitHub.
License
FuncProfiler is released under the MIT License (Modified). See the LICENSE file for details.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file funcprofiler-1.2.0.tar.gz.
File metadata
- Download URL: funcprofiler-1.2.0.tar.gz
- Upload date:
- Size: 9.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d38ad91637cd901a09f2cddd5ae1464bde0e23e4319dd1be28cc1e4a28db3a1
|
|
| MD5 |
308f3883321d3c5f57969c91a78679dc
|
|
| BLAKE2b-256 |
95797d24615cdf4feb3a016b6d9e4befee417c3a055b649ad7a1fb4d9cd8ef7f
|
File details
Details for the file funcprofiler-1.2.0-py3-none-any.whl.
File metadata
- Download URL: funcprofiler-1.2.0-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via:
twine/6.2.0 CPython/3.9.25
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c8d79df03dccf9f95d40c89a35ca31d65a3fe6f4770f07eb2dabbff6daf7d4cd
|
|
| MD5 |
c54bfdc3bc0d776672811c1ac483356b
|
|
| BLAKE2b-256 |
65760be42cb78ed27ae29159578e13579e97ccc09a744d277ecd445628c4be82
|