Metadata-Version: 2.5
Name: device-vipqvip
Version: 0.1.1
Summary: Synthetic Android device profiles for testing and development
Author: device contributors
License: MIT
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# device

Synthetic Android device profiles for testing and development.

## Install

```bash
pip install device-vipqvip
```

## Usage

```python
import device

dev = device.generate_device()

print(dev["device"])
print(dev["android"])
print(dev["deviceName"])
print(dev["phoneModel"])
```

Generate multiple profiles:

```python
devices = device.generate_devices(10)
```

Generate a profile for a requested brand:

```python
dev = device.get_random_brand_device("samsung")
```

The generated values are synthetic test data and should not be treated as
real device credentials or identifiers.
