Metadata-Version: 2.4
Name: depanne-pc
Version: 1.0.0
Summary: PC diagnostics and troubleshooting tools - system info, network, disk, CPU, memory
Home-page: https://www.depanne-pc.com
Author: Depanne-PC
Author-email: contact@depanne-pc.com
Project-URL: Homepage, https://www.depanne-pc.com
Project-URL: Diagnostics, https://www.depanne-pc.com/diagnostics/
Project-URL: Tools, https://www.depanne-pc.com/tools/
Project-URL: Guides, https://www.depanne-pc.com/guides/
Keywords: diagnostics,pc,system-info,troubleshooting,network,cpu,memory,disk,depanne-pc
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: System :: Monitoring
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-python
Dynamic: summary

# Depanne-PC

**PC Diagnostics & Troubleshooting Tools** - A Python library for system diagnostics.

Website: [https://www.depanne-pc.com](https://www.depanne-pc.com)

## Installation

```bash
pip install depanne-pc
```

## Quick Start

```python
from depanne_pc import get_system_info, get_disk_info, check_internet

info = get_system_info()
print(info)

disk = get_disk_info()
print(f"Disk: {disk['used_gb']}GB / {disk['total_gb']}GB")

net = check_internet()
print(f"Connected: {net['connected']}, Latency: {net['latency_ms']}ms")
```

## Available Functions

### System Diagnostics
- **[System Info](https://www.depanne-pc.com/diagnostics/system-info)** - get_system_info()
- **[CPU Info](https://www.depanne-pc.com/diagnostics/cpu-info)** - get_cpu_info()
- **[Memory Info](https://www.depanne-pc.com/diagnostics/memory-info)** - get_memory_info()
- **[Disk Info](https://www.depanne-pc.com/diagnostics/disk-info)** - get_disk_info(path)
- **[Uptime](https://www.depanne-pc.com/diagnostics/uptime)** - get_uptime()
- **[Process Info](https://www.depanne-pc.com/diagnostics/process-info)** - get_process_info()

### Network Tools
- **[Network Info](https://www.depanne-pc.com/diagnostics/network-info)** - get_network_info()
- **[Port Checker](https://www.depanne-pc.com/tools/port-checker)** - check_port(host, port)
- **[Internet Test](https://www.depanne-pc.com/tools/internet-test)** - check_internet()

### Parsing Tools
- **[User Agent Parser](https://www.depanne-pc.com/tools/user-agent-parser)** - parse_user_agent(ua_string)

## Troubleshooting Guides

Visit [depanne-pc.com](https://www.depanne-pc.com) for comprehensive PC troubleshooting:

- [Windows Troubleshooting](https://www.depanne-pc.com/guides/windows/)
- [PC Won't Boot](https://www.depanne-pc.com/guides/pc-wont-boot)
- [Slow PC Fix](https://www.depanne-pc.com/guides/slow-pc)
- [Blue Screen Fix (BSOD)](https://www.depanne-pc.com/guides/blue-screen)
- [Network Problems](https://www.depanne-pc.com/guides/network-problems)
- [Hard Drive Issues](https://www.depanne-pc.com/guides/hard-drive)
- [RAM Issues](https://www.depanne-pc.com/guides/ram-problems)
- [CPU Overheating](https://www.depanne-pc.com/guides/cpu-overheating)
- [Driver Issues](https://www.depanne-pc.com/guides/driver-problems)
- [Windows Update Errors](https://www.depanne-pc.com/guides/windows-update)
- [Virus Removal](https://www.depanne-pc.com/guides/virus-removal)
- [Data Recovery](https://www.depanne-pc.com/guides/data-recovery)
- [PC Optimization](https://www.depanne-pc.com/guides/pc-optimization)
- [Hardware Diagnostics](https://www.depanne-pc.com/diagnostics/)
- [Online Tools](https://www.depanne-pc.com/tools/)

## No Dependencies

Uses only Python standard library modules. No external dependencies required.

## License

MIT License - see [LICENSE](LICENSE) for details.
