Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/10mohi6/line-notify-python
line-notify is a python client library for line notify api on Python 3.6 and above.
https://github.com/10mohi6/line-notify-python
api line notify python
Last synced: 14 days ago
JSON representation
line-notify is a python client library for line notify api on Python 3.6 and above.
- Host: GitHub
- URL: https://github.com/10mohi6/line-notify-python
- Owner: 10mohi6
- License: mit
- Created: 2019-10-06T13:08:37.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-08T02:28:33.000Z (almost 2 years ago)
- Last Synced: 2024-12-20T21:52:04.544Z (about 2 months ago)
- Topics: api, line, notify, python
- Language: Python
- Homepage:
- Size: 14.6 KB
- Stars: 5
- Watchers: 1
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# linenotipy
[![PyPI](https://img.shields.io/pypi/v/linenotipy)](https://pypi.org/project/linenotipy/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![codecov](https://codecov.io/gh/10mohi6/line-notify-python/branch/master/graph/badge.svg)](https://codecov.io/gh/10mohi6/line-notify-python)
[![Build Status](https://travis-ci.com/10mohi6/line-notify-python.svg?branch=master)](https://travis-ci.com/10mohi6/line-notify-python)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/linenotipy)](https://pypi.org/project/linenotipy/)
[![Downloads](https://pepy.tech/badge/linenotipy)](https://pepy.tech/project/linenotipy)linenotipy is a python client library for line notify api on Python 3.6 and above.
## Installation
$ pip install linenotipy
## Usage
### basic
```python
from linenotipy import Lineline = Line(token='XXXXXXXXXX')
line.post(message="Hello, world.")
```
### image
```python
from linenotipy import Lineline = Line(token='XXXXXXXXXX')
line.post(message="Hello, image.", imageFile="test.png")
```
### stamp
```python
from linenotipy import Lineline = Line(token='XXXXXXXXXX')
line.post(message="Hello, stamp.", stickerPackageId=3, stickerId=180)
```
sticker [documentation](https://devdocs.line.me/files/sticker_list.pdf)## Getting started
For help getting started with LINE Notify API, view our online [documentation](https://notify-bot.line.me/doc/en/).
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request