Metadata-Version: 2.1
Name: speedit-py
Version: 1.1.2
Summary: This package allows you to test the speed of a function
Home-page: https://github.com/Kev-in123/speedit-py
Author: Kev-in123
Author-email: kevinchoi005@gmail.com
License: UNKNOWN
Project-URL: Issue tracker, https://github.com/Kev-in123/speedit-py/issues
Description: # speedit.py
        
        This package allows you to test the speed of a function
        
        ## Installation
        
        Stable version:
        
        ```
        pip install speedit-py
        ```
        
        Development version:
        
        ```
        pip install git+https://github.com/Kev-in123/speedit-py
        ```
        
        ## Example Usage
        
        ```python
        from speedit import speed
        
        @speed
        def hello_there(msg):
          print(msg)
        
        hello_there("hello there")
        
        #support for async functions
        @speed
        async def hi_there():
          print("hi there")
        
        hi_there()
        ```
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
