Metadata-Version: 2.1
Name: altikrity
Version: 0.3
Summary: A powerful encryption library with multi-layer encryption techniques.
Author: Abdullah
Author-email: abdullah.alttikrity@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: zlib

# Altikrity - Python Encryption Library

Altikrity is a powerful library that provides multi-layer encryption techniques for securing Python code.

## Installation

To install Altikrity, use pip:

pip install altikrity


## Usage

### Encrypting Code

```python
from altikrity import encrypt_multiple_layers, decrypt_and_execute

# Encrypting your code
code = "print('Hello from encrypted code!')"
encrypted_code = encrypt_multiple_layers(code)

# Executing encrypted code
decrypt_and_execute(encrypted_code)
