Metadata-Version: 2.4
Name: warpt
Version: 0.1.0
Summary: A simple package to gather system OS and memory info
Home-page: https://github.com/edawson/warpt
Author: Eric T. Dawson
Author-email: eric@betulalabs.com
Project-URL: Bug Tracker, https://github.com/edawson/warpt/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: System :: Monitoring
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.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: psutil>=5.8.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: project-url
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# warpt

A simple Python package to gather system OS and memory information.

## Installation

```bash
pip install warpt
```

## Usage

```python
from warpt import get_os_info, get_memory_info

# Get OS information
os_info = get_os_info()
print(os_info)
# {'system': 'Darwin', 'node': 'MacBook-Pro', 'release': '23.5.0', ...}

# Get memory information
mem_info = get_memory_info()
print(mem_info)
# {'total': 17179869184, 'available': 5367709696, 'percent': 68.8, ...}
```

## Requirements

- Python 3.6+
- psutil

## License

MIT
