Metadata-Version: 2.1
Name: linesdk
Version: 0.0.4
Summary: send line message notification, support aws  lambda
Home-page: https://github.com/thanakijwanavit/linebotsdk/tree/master/
Author: nic wanavit
Author-email: nwanavit@hatari.cc
License: Apache Software License 2.0
Keywords: linesdk
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: line-bot-sdk
Requires-Dist: lambdasdk

# villaProductSdk
> read and write product information in real time


## Install

`pip install villaProductSdk`

## How to use

Uploading a large amount of data using s3

## generate dummy data for testing

```
#Dummy Data
sampleInput = {
  "message": "helloWorld",
  "roomId": 'C9ba1d024ed36979222a2a2a8f67cfc9a' ,
  "accessKey": accessKey
}

```

## Create main class object

```
from linesdk.linesdk import Line

line = Line(accessKey = sampleInput['accessKey'] )
```

## send message

```
%%time
line.send(roomId = sampleInput['roomId'] ,message = sampleInput['message'])
```

    CPU times: user 17.3 ms, sys: 5.13 ms, total: 22.4 ms
    Wall time: 352 ms





    True



## LambdaFunction

```
%%time
line.lambdaSend(sampleInput, _)
```

    CPU times: user 12.8 ms, sys: 1.92 ms, total: 14.7 ms
    Wall time: 409 ms



