Metadata-Version: 2.1
Name: linesdk
Version: 0.0.1
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

# 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

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

```

## Create main class object

```python
from linesdk.linesdk import Line

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

## send message

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

## LambdaFunction

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


