D
Size: a a a
D
AB
@client.on(events.NewMessage(pattern=r'заданное слово'))
async def handler(event):
await event.respond('Ответ')D
SN
YK
SN
SM
MW
MW
[tool.poetry.scripts]
start_server = "server:main"
MW
FROM python:3.8.3-alpine
WORKDIR /app
COPY . .
RUN apk add build-base libffi-dev openssl-dev && pip install poetry
CMD ["poetry", "run", "start_server"]
MW
MW
FROM python:3.8.3-alpine```
WORKDIR /app
COPY . .
RUN apk add build-base libffi-dev openssl-dev && pip install poetry && poetry install --no-devs
CMD ["start_server"]
MW
AM
AM
p
YK
💀Ҁ
EI
EI