Metadata-Version: 2.1
Name: h9nt
Version: 1.0.0
Summary: A Simple Algorithm utils with protobuf in python
Author: vardxg
Author-email: <vardxgdev@gmail.com>
Keywords: python,dev,free,algo
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
Requires-Dist: pyproto
Requires-Dist: json
Requires-Dist: user_agent
Requires-Dist: re


## Installation



Install h9nt using pip:



```bash

pip install h9nt

```





```python

from h9nt import PbEnc



# Example usage:



def __get__payload() -> str:

    payload = {

        1: "Hello World!",

        2: 234,

        3: 556,

        4: 67,

        5: {

            1: 11,

        },

        11: "outpout"

    }

    return payload



def __to_buff(payload: str) -> str:

    try:

        return PbEnc().encrypt_pb_payload(payload)

    except:

        return None



`its just a basic example how its could be used.`

