Skip to main content

A python internet status checking library

Project description

Internet active checkking Project

This project leverages requests module to check internet connectivity. It's designed for simplicity and ease of use, allowing you to check internet connection active status.

Features

  • Check internet: Check if your device have a proper working internet connection or not.

Prerequisites

  • requests

Setup

  1. Install dependencies:
    pip install requests
    

Usage

To use the functionality, import the checkConnection function from ArtexPing.

from ArtexPing import InternetStatus

a = InternetStatus(output_file_path="output.txt")
a.checkConnection()

Continuous Usage

If you want to check internet connection active status continuously, it is recommended to use threading. This will prevent the function from blocking the execution of further code until it is stopped.

Example with Threading

import threading
import time
from ArtexPing import InternetStatus

a = InternetStatus(output_file_path="output.txt", continous=True)
ping_thread = threading.thread(target=a.checkStatus())

ping_thread.start()
time.sleep(10)
a.quit()
thread.join()

This project is managed by Artex AI. Soon an improved and stable version will roll out

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

artexping-0.0.1.tar.gz (3.3 kB view hashes)

Uploaded Source

Built Distribution

ArtexPing-0.0.1-py3-none-any.whl (3.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page