generated from repo-template/pyci-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
209 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Publish package | ||
|
||
on: | ||
release: | ||
types: | ||
- published | ||
|
||
jobs: | ||
pypi: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.8 | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements-dev.txt | ||
pip install -r requirements.txt | ||
- name: Build | ||
run: | | ||
make build | ||
- name: Publish Pypi | ||
run: | | ||
twine upload --repository-url https://upload.pypi.org/legacy/ dist/* -u __token__ -p ${{ secrets.PYPI_TOKEN }} --verbose |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
name: Publish package | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: 'Input test-pypi version' | ||
required: true | ||
|
||
jobs: | ||
test-pypi: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up Python 3.8 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.8 | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install -r requirements-dev.txt | ||
pip install -r requirements.txt | ||
- name: Update VERSION | ||
run: | | ||
echo '${{ inputs.version }}' > VERSION | ||
- name: Build | ||
run: | | ||
make build | ||
- name: Publish Test Pypi | ||
run: | | ||
twine upload --repository-url https://test.pypi.org/legacy/ dist/* -u __token__ -p ${{ secrets.TEST_PYPI_TOKEN }} --verbose | ||
- uses: peter-evans/create-pull-request@v5 | ||
with: | ||
commit-message: Update VERSION | ||
delete-branch: true | ||
title: Update VERSION (${{ inputs.version }}) | ||
body: link https://test.pypi.org/project/line-notify-sdk/${{ inputs.version }}/ | ||
reviewers: nanato12 | ||
labels: auto generate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,66 @@ | ||
# pyci-lint | ||
# line-notify-sdk | ||
|
||
Python GitHub Actions | ||
LINE Notify SDK for Pyrhon | ||
|
||
## Create requirements.txt | ||
## pip | ||
|
||
```bash | ||
$ pip freeze | grep -e black -e isort -e flake8 -e mypy > requirements.txt | ||
$ pip install line-notify-sdk | ||
``` | ||
|
||
## Usage | ||
|
||
```python | ||
from notify import Notify | ||
|
||
n = Notify(token="YOUR_NOTIFY_TOKEN") | ||
r = n.send_text("hello") | ||
|
||
print(r.json()) | ||
# {'status': 200, 'message': 'ok'} | ||
``` | ||
|
||
![notify](doc/image.png) | ||
|
||
## Methods | ||
|
||
| method | description | | ||
| :- | :- | | ||
| send_image_with_url(text, url) | Send image by specifying the image URL | | ||
| send_image_with_local_path(text, path) | Send images by specifying the local image path | | ||
| send_image(text, image) | Send images using BufferedReader or BytesIO | | ||
| send_text(text) | Send text | | ||
| send(files) | Customization request to notify (use this for anything other than images and text) | | ||
| revoke() | Disable access token and remove notification settings | | ||
| get_status() | Check linkage status | | ||
| get_rate_limit() | Get the number of times the API can be called in an hour | | ||
|
||
## Documentation | ||
|
||
<https://notify-bot.line.me/doc/> | ||
|
||
## License | ||
|
||
```plain | ||
MIT License | ||
Copyright (c) 2024 nanato12 | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
0.0.1 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
black==24.4.2 | ||
flake8==7.0.0 | ||
isort==5.13.2 | ||
mypy==1.10.0 | ||
mypy-extensions==1.0.0 | ||
python-dotenv==1.0.1 | ||
types-requests==2.32.0.20240523 | ||
black>=24.4.2 | ||
flake8>=7.0.0 | ||
isort>=5.13.2 | ||
mypy>=1.10.0 | ||
mypy-extensions>=1.0.0 | ||
python-dotenv>=1.0.1 | ||
types-requests>=2.32.0.20240523 | ||
setuptools>=70.0.0 | ||
wheel>=0.43.0 | ||
twine>=5.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
pydantic==2.7.1 | ||
requests==2.32.2 | ||
pydantic>=2.7.1 | ||
requests>=2.32.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from setuptools import setup | ||
|
||
setup() |