Metadata-Version: 2.1
Name: cyberfly-data-shipper
Version: 0.1.4
Home-page: https://github.com/cyberfly-io/data-shipper
Description-Content-Type: text/markdown

# data-shipper
Device Python Client SDK beta

# Install

``pip install cyberfly-data-shipper``

# Usage

To use this python client you need following things

1. KeyPairs
2. Device ID

## Create Key pair for device

``python3 -c "from pypact.pact import Pact;kp=Pact().crypto.gen_key_pair();print(kp)"``

Create device in Cyberfly IO platform to obtain device id (uuid)


### Template 

```python
from data_shipper.main import CyberflyDataShipper
key_pair = {"publicKey": "your public key",
            "secretKey": "your secret key"}

client = CyberflyDataShipper(device_id="093062d0-a357-4f8a-a1cb-35f1b43c12ae", 
                             key_pair=key_pair, network_id="testnet04")


@client.on_message()
def do_something(data):
    #print(data)
    pass

while 1:
    #send data
    pass
```


### Raspberry pi LED example

```python
import time
from data_shipper.main import CyberflyDataShipper
import RPi.GPIO as GPIO

key_pair = {"publicKey": "d04bbd8f403e583248aa461896bd7518113f89b85c98f3d9596bbfbf30df0bcb",
            "secretKey": "a0ec3175c6c80e60bc8ef18bd7b73a631c507b9f0a42c973036c7f96d21b047a"}

client = CyberflyDataShipper(device_id="your device id from io platform", 
                             key_pair=key_pair, network_id="testnet04")

GPIO.setmode(GPIO.BCM)
GPIO.setwarnings(False)


@client.on_message()
def do_something(data):
    pin_no = data.get("pin_no")
    state = data.get("state")
    GPIO.setup(pin_no, GPIO.OUT)
    if state:
        GPIO.output(pin_no, GPIO.HIGH)
    else:
        GPIO.output(pin_no, GPIO.LOW)


while 1:
    # read data from sensor and process
    client.process_data({"temperature": 36})
    time.sleep(5) # time delay set as you want
```
