Metadata-Version: 2.1
Name: pyactivation
Version: 0.0.2
Summary: Library for license key generation and validation
Home-page: https://github.com/dolimight/pyactivation
Author: Wesley Jochman
Author-email: dolimightdesigns@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
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: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Pyactivation

## Version 0.0.2



A small library for creating and validating license keys.



### Installation

```

pip install licensekeygen

```



### Get started

How to generate a key using v1



```Python

from pyactivation.licensekey import v1



# creates a key

key = v1.generate_key()



print(key)

```



How to generate a key using v2



```Python

from pyactivation.licensekey import v2



# creates a key

key = v2.generate_randomkey(1, "07/30/2025")



print(key)

```



