Metadata-Version: 2.1
Name: prompt-db-web
Version: 0.1.1
Summary: 
License: MIT
Author: Crypto Pensioner
Author-email: jozwiakdawid@gmail.com
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: coo (>=0.1.3,<0.2.0)
Requires-Dist: pendulum (>=3.0.0,<4.0.0)
Description-Content-Type: text/markdown

how_long
========

Simple Decorator to measure a function execution time.

Example
_______

.. code-block:: python

    from how_long import timer


    @timer
    def some_function():
        return [x for x in range(10_000_000)]
