Metadata-Version: 2.1
Name: speedtestpy
Version: 1.1.0
Summary: A module to easily get the speedtest data you need within seconds
Home-page: https://github.com/HYKANTUS/speedtestpy/
Author: HYKANTUS
Author-email: hykantus@gmail.com
License: UNKNOWN
Project-URL: Personal Website, http://hykantus.tk/
Description: # pySMTP
        A module to easily get the speedtest data you need within seconds
        Based on the [speedtest-cli](https://pypi.org/project/speedtest-cli/) library.
        
        ## Usage
        
        ### Main commands
        
        #### Simple
        gives a simple report of download, upload speed, and ping.
        ```python
        import speedtestpy
        speedtestpy.run.simple()
        ```
        
        #### Test
        runs full [speedtest-cli](https://pypi.org/project/speedtest-cli/) test.
        ```python
        import speedtestpy # import the module
        speedtestpy.run.test()
        ```
        
        ### Data commands
        get raw speedtest data
        ```python
        import speedtestpy # import the module
        speedtestpy.data.download() # return download speed
        speedtestpy.data.upload() # returns upload speed
        speedtestpy.data.ping() # returns ping speed
        ```
        
        #### Help function
        get help
        ```python
        import speedtestpy # import the module
        speedtestpy.run.help() # help command
        ```
        
        
        ## Requirements
        [speedtest-cli](https://pypi.org/project/speedtest-cli/) library.
        
        ## Credits
        Made by [HYKANTUS](http://www.hykantus.tk)
        
Keywords: speedtest,speedtest data,Developers
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.6, <4
Description-Content-Type: text/markdown
