Skip to content
This repository has been archived by the owner on Nov 21, 2022. It is now read-only.

Latest commit

 

History

History
188 lines (159 loc) · 22.2 KB

README.md

File metadata and controls

188 lines (159 loc) · 22.2 KB

may

LINE Bot AI May

🤖 -> 🐈 <- 🧠

CI Passing Codecov Codacy Badge CodeFactor CodeClimate maintainability GitHub Issues GitHub Pull requests Gitter

FOSSA Status

Table of Contents

Try it out!

Use this Line QR code to add the Bot:

Usage

Example:

Push Message Reply Message
おはよう おはようございますニャン
ねむい 私もねむいですニャン
おうむがえし! おうむがえし!ニャン
ちゅーるを買ったよ ちゅーるを食べたいニャン
りんりん(相棒)の調子はどう? りんりんは寝ているニャン
いい音楽ないかな これを聴いているニャン
あいみょん,裸の心
映画を観たいな これを観ているニャン
イミテーション・ゲーム
今日のニュースを知りたいな これを読んでいるニャン
Title - URL
面白いドラマあるかな ここを見ているニャン
Filmarks
TMDb
ゲームをやろうかな ここを見ているニャン
Metacritic
天気どうなるかな ここを見ているニャン
Google天気
おやすみー sticker

Development

Overview

overview

Requirement

modules

Homepage PyPI GitHub Version Environment variable(Heroku)
uWSGI uWSGI unbit/uwsgi 2.0.19.1 -
Gunicorn gunicorn benoitc/gunicorn 20.1.0 -
nose nose nose-devs/nose 1.3.7 -
Sphinx Sphinx sphinx-doc/sphinx 5.3.0 -
Codecov codecov codecov/codecov-python 2.1.12 -
LINE Developers line-bot-sdk line/line-bot-sdk-python 2.3.0 LINE_CHANNEL_ACCESS_TOKEN
LINE_CHANNEL_SECRET
Flask Flask pallets/flask 2.2.2 -
NewsAPI newsapi-python mattlisiv/newsapi-python 0.2.6 NEWSAPI_APIKEY
A3RT/TalkAPI pya3rt nocotan/pya3rt 1.1 A3RT_TALKAPI_APIKEY
TMDb tmdbv3api AnthonyBloomer/tmdbv3api 1.7.5 TMDB_API_KEY
YouTube - - - -
Filmarks - - - -
Metacritic - - - -
Google - - - -

GitHub

Homepage This Repository
GitHub Code
GitHub Issues Issues
ISSUE_TEMPLATE
CONTRIBUTING.md
SUPPORT.md
GitHub Pull requests Pull requests
CODEOWNERS
pull_request_template.md
GitHub Discussions Discussions
GitHub Actions Actions
workflows
GitHub Projects Projects
GitHub Wiki Wiki
GitHub Security Security
CODE_OF_CONDUCT.md
SECURITY.md
GitHub Insights Insights
GitHub Pages aimay
GitHub Sponsors FUNDING.yml
GitHub CodeQL codeql-analysis.yml

actions

Marketplace/Actions Version Environment variable(GitHub)
Checkout 3.x.x -
Setup Python 4.x.x -
- - A3RT_TALKAPI_APIKEY
Codecov 3.x.x CODECOV_TOKEN
Codacy Coverage Reporter 1.3.0 CODACY_PROJECT_TOKEN
GitHub Pages action 3.x.x GITHUB_TOKEN
Deploy to Heroku 3.12.12 HEROKU_API_KEY
HEROKU_APP_NAME
HEROKU_EMAIL

badges

Homepage Application This Repository
Codecov marketplace/codecov aimay
Codacy - aimay
CodeFactor - aimay
Code Climate - aimay
Gitter - aimay
Shields.io - -
FOSSA fossabot aimay

others

Homepage GitHub This Repository
Docker docker/docker-ce Dockerfile
Theia on Gitpod eclipse-theia/theia
gitpod-io/gitpod
.theia
.gitpod.yml
GitHub Learning Lab github/learning-lab-components ghsable/github-slideshow
ZenHub ZenHub -
Zube zube -
Dependabot Dependabot Preview dependabot.yml
Stale probot/stale stale.yml
gitignore.io toptal/gitignore.io .gitignore
draw.io jgraph/drawio drawio

app.run

Case WSGI commands HOST:PORT
1 Flask python -m aimay 0.0.0.0:${PORT}
2 uWSGI uwsgi --workers=$(($(grep -c processor /proc/cpuinfo)*2+1)) --http=0.0.0.0:${PORT} --mount /=aimay.__main__:app 0.0.0.0:${PORT}
3 Gunicorn gunicorn --workers $(($(grep -c processor /proc/cpuinfo)*2+1)) aimay.__main__:app 0.0.0.0:${PORT}

Versioning


BACK TO TOP