Metadata-Version: 2.3
Name: winpulse
Version: 0.1.1
Summary: A lightweight, blazingly fast cross-platform system metric telemetry engine for Windows, Linux, and macOS.
Author: Mayank170906
Author-email: Mayank170906 <mayankchoudharysept17@gmail.com>
Requires-Python: >=3.8
Project-URL: Homepage, https://github.com/Mayank170906/WinPulse
Project-URL: Issues, https://github.com/Mayank170906/WinPulse/issues
Project-URL: Repository, https://github.com/Mayank170906/WinPulse
Description-Content-Type: text/markdown

# WinPulse ⚡

A lightweight, blazingly fast cross-platform system metric telemetry engine for Python. Natively pulls system stats in milliseconds with zero heavy dependencies.

## Features

- **Cross-Platform Support**: Identical API performance across Windows, Linux, and macOS.
- **Ultra Lightweight**: Zero bulky external package dependencies. Uses fast, consolidated native shell execution blocks.
- **Accurate Telemetry**: Tracks true physical CPU core boundaries, memory utilization scales, and process loads safely.

## Installation

```bash
pip install winpulse

import json
from winpulse import WinPulse

# Initialize the engine
pulse = WinPulse()

# Retrieve dynamic system metrics
details = pulse.get_all_system_details()
print(json.dumps(details, indent=4))