Metadata-Version: 2.1
Name: ViteLicense
Version: 1.0.8
Summary: A free Python module to help you integrate with vitelicense.io
Author: Vite License
Author-email: admin@vitelicense.io
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
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: Programming Language :: Python :: 3.12
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: requests
Requires-Dist: setuptools

# vitelicense.io Python

The free Python module to help you validate devices with licenses on vitelicense.io

## Use Cases

- Get devices information
- Validate devices with licenses

## Features

- Dynamic vitelicense.io credentials
- Easy to validate your software licenses with a few lines of coding

## Requirements

- **Python**: 2.x or 3.x or higher

## Quick Start

If you prefer to install this package into your own Python project, please follow the installation steps below

## Installation

#### Require the current package using pip:

```bash
pip install vitelicense
```

## Testing

``` python
import json
from ViteLicense import ViteLicense

computer = ViteLicense.computer()
print('Computer: ', json.dumps(computer, indent=4))

hash = ViteLicense.hash(hash)
print('Computer Hash: ', hash)

response = ViteLicense.validate('api_key', 'license_serial')
print('Validate: ', json.dumps(response, indent=4))
```

## Contributing

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

### Security

If you discover any security related issues, please email contact@adminvitelicense.io or use the issue tracker.

## Credits

- [Vite., Ltd](https://github.com/vitegroupltd)
- [All Contributors](../../contributors)

## License

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.
