Metadata-Version: 2.1
Name: net-speed-checker
Version: 0.3
Summary: Package taking measurements for internet speed.
Home-page: https://github.com/radupetre/net-speed-checker
Author: Radu Petre
Author-email: Spam@Petre.dev
License: MIT License
Download-URL: https://github.com/radupetre/net-speed-checker/archive/v0.2.tar.gz
Description: # Net Speed Checker
        
        net-speed-checker is a Python3 library for taking net speed measurements and persisting the measurements in RDBS.
        
        ### Features
        
        
        ### Installation
        
        ```sh
        $ pip install net-speed-checker
        ```
        
        ### Usage
        
        ```sh
        python3 check_speed.py $PROCESS_NAME $DBMS $USER $SCHEMA $SERVER_PORT $PASSWORD
        ```
        
        or
        
        ```sh
        python3 check_speed.py local_dev mysql admin my_schema mysql-url.com:3306 pa$$w0rd
        ```
        
        or
        
        ```sh
        python3 -c 'from net_speed_checker import check_speed; check_speed.measure("local_dev", "mysql", "admin", "my_schema", "mysql-url.com:3306", "pa$$w0rd")'
        ```
        
        ### Schema DDL
        
        ```sql
        create table speed_measurement
        (
        	id int auto_increment
        		primary key,
        	client_name varchar(100) null,
        	client_ip varchar(100) null,
        	client_lat float null,
        	client_lon float null,
        	client_isp varchar(100) null,
        	client_cc varchar(100) null,
        	server_url varchar(100) null,
        	server_lat float null,
        	server_lon float null,
        	server_cc varchar(100) null,
        	server_city varchar(100) null,
        	server_ping float null,
        	upload float null,
        	download float null,
        	timestamp datetime not null,
        	success tinyint(1) not null,
        	message varchar(100) not null
        );
        ```
        
        License
        ----
        
        MIT
Keywords: SPEEDTEST,SPEEDCHECKER,SPEED,TEST,CHECKER
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
