Metadata-Version: 2.2
Name: LinuxMemoryStatistics
Version: 0.0.1
Summary: This script prints memory usages and statistics (by process, executable and for the full system).
Home-page: https://github.com/mauricelambert/LinuxMemoryStatistics
Download-URL: https://mauricelambert.github.io/info/python/code/LinuxMemoryStatistics.pyz
Author: Maurice Lambert
Author-email: Maurice Lambert <mauricelambert434@gmail.com>
Maintainer: Maurice Lambert
Maintainer-email: Maurice Lambert <mauricelambert434@gmail.com>
License: GPL-3.0 License
Project-URL: Github, https://github.com/mauricelambert/LinuxMemoryStatistics
Project-URL: Documentation, https://mauricelambert.github.io/info/python/code/LinuxMemoryStatistics.html
Project-URL: Python Executable, https://mauricelambert.github.io/info/python/code/LinuxMemoryStatistics.pyz
Project-URL: Windows Executable, https://mauricelambert.github.io/info/python/code/LinuxMemoryStatistics.exe
Keywords: memory,executable,process,system,linux,usages
Platform: Windows
Platform: Linux
Platform: MacOS
Classifier: Topic :: System
Classifier: Environment :: Console
Classifier: Topic :: System :: Shells
Classifier: Operating System :: POSIX
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Topic :: System :: System Shells
Classifier: Programming Language :: Python :: 3.8
Classifier: Operating System :: Microsoft :: Windows
Classifier: Topic :: System :: Systems Administration
Classifier: Intended Audience :: System Administrators
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Dynamic: author
Dynamic: download-url
Dynamic: home-page
Dynamic: maintainer
Dynamic: requires-python

![LinuxMemoryStatistics Logo](https://mauricelambert.github.io/info/python/code/LinuxMemoryStatistics_small.png "LinuxMemoryStatistics logo")

# LinuxMemoryStatistics

## Description

This script prints memory usages and statistics (by process,
executable and for the full system).

## Requirements

This package require:
 - python3
 - python3 Standard Library

## Installation

### Pip

```bash
python3 -m pip install LinuxMemoryStatistics
```

### Git

```bash
git clone "https://github.com/mauricelambert/LinuxMemoryStatistics.git"
cd "LinuxMemoryStatistics"
python3 -m pip install .
```

### Wget

```bash
wget https://github.com/mauricelambert/LinuxMemoryStatistics/archive/refs/heads/main.zip
unzip main.zip
cd LinuxMemoryStatistics-main
python3 -m pip install .
```

### cURL

```bash
curl -O https://github.com/mauricelambert/LinuxMemoryStatistics/archive/refs/heads/main.zip
unzip main.zip
cd LinuxMemoryStatistics-main
python3 -m pip install .
```

## Usages

### Command line

```bash
LinuxMemoryStatistics              # Using CLI package executable
python3 -m LinuxMemoryStatistics   # Using python module
python3 LinuxMemoryStatistics.pyz  # Using python executable
LinuxMemoryStatistics.exe          # Using python Windows executable
```

### Python script

```python
from LinuxMemoryStatistics import *
```

## Links

 - [Pypi](https://pypi.org/project/LinuxMemoryStatistics)
 - [Github](https://github.com/mauricelambert/LinuxMemoryStatistics)
 - [Documentation](https://mauricelambert.github.io/info/python/code/LinuxMemoryStatistics.html)
 - [Python executable](https://mauricelambert.github.io/info/python/code/LinuxMemoryStatistics.pyz)
 - [Python Windows executable](https://mauricelambert.github.io/info/python/code/LinuxMemoryStatistics.exe)

## License

Licensed under the [GPL, version 3](https://www.gnu.org/licenses/).
