Metadata-Version: 2.1
Name: virtualmachine
Version: 1.2.1
Summary: Python library to identify virtual machine.
Home-page: https://github.com/PerryWerneck/vmdetect
Author: Perry Werneck
Author-email: perry.werneck@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE


## About

This library allow python applications to detect when running on virtual machines; works on windows and linux. 

Based py_vmdetect sources from https://github.com/kepsic/py_vmdetect

## Installation

### PyPI

```shell
pip install virtualmachine
```

### Linux packages

You can get linux packages (RPM, Deb, arch) from Suse's [Open Build Service](https://software.opensuse.org/download.html?project=home%3APerryWerneck%3Audjat&package=vmdetect)

## Usage

```python
import virtualmachine
print(virtualmachine.name())
```

```python
import virtualmachine
print(virtualmachine.id())
```


