Welcome to version 0.9.3 of the timeanalysismoon
Python package! This release introduces a decorator designed to measure and print the execution time of functions, providing a simple and effective way to profile your Python code.
-
Decorator Functionality: The
timeanalysismoon
decorator, when applied to a function, calculates the time it takes for the function to run and prints the result. -
Ease of Use: Integrating the decorator into your code is straightforward. Simply apply
@timeanalysismoon
above the function you want to analyze.
from timeanalysismoon import timeanalysismoon
@timeanalysismoon
def example_function():
# Your function logic here
pass
You can install the package using the following pip command:
pip install timeanalysismoon
or
pip install timeanalysismoon==0.9.3
- Supports Python 3.6 to 3.12
- Enhancement: Improved performance in certain scenarios.
- Bug Fix: Fixed a minor issue related to time calculation precision.
If you have any suggestions, improvements, or bug reports, feel free to contribute to the project by opening issues or submitting pull requests on the GitHub repository.
This package is released under the MIT License. See the LICENSE file for details.
- CoderMungan
- Pypi.org: https://pypi.org/project/timeanalysismoon/0.9.3/
- Email: [email protected]
- Github: CoderMungan