Metadata-Version: 2.1
Name: mindlakesdk
Version: 1.0.6
Summary: A Python SDK to connect to Mind Lake
Project-URL: Homepage, https://github.com/mind-network/mind-lake-sdk-python
Project-URL: Bug Tracker, https://github.com/mind-network/mind-lake-sdk-python/issues
Author-email: Mind Labs <biz@mindnetwork.xyz>
License-File: LICENSE
Keywords: datalake,encryption,web3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Requires-Dist: eth-account
Requires-Dist: pynacl
Requires-Dist: web3
Description-Content-Type: text/markdown

# Mind Lake Python SDK

An Python implementation for Mind Lake

## Description

The Mind Lake SDK utilizes Mind Lake's encryption storage and privacy computing capabilities to provide secure data management. 
* Mind Lake is the backbone of Mind Network. 
* All data is end-to-end encrypted at the client-side SDK side, ensuring that plaintext data never leaves the user's client. 
* Cryptographic principles ensure that only the data owner can access their own plaintext data. 
* Additionally, Mind Lake's powerful privacy computing capabilities enable the performance of calculations and querying of encrypted data.

## Getting Started

### Dependencies

* Python > 3.10
* pip
* web3
* pynacl

### Installing

* pip install mindlakesdk

### Import
```
import mindlakesdk
...
```

### More examples
* [step-by-step tutorial](/tutorial/README.md)
* [quick starts](https://mind-network.gitbook.io/mind-lake-sdk/get-started)
* [more examples](https://mind-network.gitbook.io/mind-lake-sdk/use-cases)



## code
```
mind-lake-sdk-python
|-- mindlakesdk # source code
|   |-- __init__.py
|   |-- datalake.py
|   |-- permission.py
|   |-- cryptor.py
|   └-- utils.py
|-- tests # unit test code
|-- examples # use case examples
|-- tutorial # step-by-step tutorial
|-- README.md
└--- LICENSE

```

## Help

Full doc: [https://mind-network.gitbook.io/mind-lake-sdk](https://mind-network.gitbook.io/mind-lake-sdk) 

## Authors
 
* Dennis [@yuhaos](https://twitter.com/yuhaos)
* George [@georgemindnet](https://twitter.com/georgemindnet)

## Version History

* v1.0
    * Initial Release
* v1.0.1
    * Fix bug
* v1.0.2
    * Improve performances
* v1.0.5
    * Keep up the version number with TypeScript SDK
* v1.0.6
    * Add support for Mind DataPack

## License

This project is licensed under the [MIT] License - see the LICENSE.md file for details
