Metadata-Version: 2.1
Name: sidle
Version: 0.0.2
Summary:  A simple data encryption with password for Python 3.
Home-page: UNKNOWN
Author: Zenqi
License: MIT
Description: # sidle
        A simple data encryption with password for Python
        
        Example with `Sidle`:
        ```python
        from sidle import Sidle
        #: Sidle is a class for handling storing files and more.
        
        sidle = Sidle(filename='data', password='12345')
        sidle['username'] = 'zenqi'
        ```
        Using `SidleData`
        ```python
        from sidle import SidleData
        #: SidleData is a simple datastructure that hold key and the value
        #: given.
        
        sidle = SidleData()
        sidle['username'] = 'zenqi'
        
        ```
        
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
