Metadata-Version: 2.1
Name: pandora-storage-server-client
Version: 0.1.4
Summary: Pandora Storage Server Client.
Author: Juan Carlos Juárez
Author-email: <jc.juarezgarcia@outlook.com>
Keywords: Storage,Key-Value,Server,NoSQL,Schemaless,GNU/Linux
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: requests

# Pandora Storage Server Python Client 🪐🐍

This is the Python Client implementation for the Key-Value Pairs Schemaless Pandora Storage Server.

How to Install Pandora Storage Server Python Client
==========

*Requirements: 
- Python 3.6+ installed.

Make sure you have Python 3.6+ installed and run the following command in your terminal to install the Pandora Storage Server Python Client:

For MacOS and GNU/Linux:

```python
pip3 install pandora_storage_server_client
```

For Windows:

```python
pip install pandora_storage_server_client
```

How to use the Pandora Storage Server Python Client
==========

To use the client import the client module to your Python script as follows:

```python
import pandora_storage_server_client as pandora
```
