Telegram bot.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Ce dépôt est archivé. Vous pouvez voir les fichiers et le cloner, mais vous ne pouvez pas pousser ni ouvrir de ticket/demande d'ajout.
 
 
 
lza_menace ed26c40a8b
dont ref username since many dont have one
il y a 3 ans
admin update balances stmt il y a 3 ans
bin remove conflict il y a 3 ans
tipbot dont ref username since many dont have one il y a 3 ans
.gitignore revamp - bring the bot to life again il y a 3 ans
LICENSE Initial commit il y a 4 ans
Makefile revamp - bring the bot to life again il y a 3 ans
README.md add note about adding commands for development il y a 4 ans
env-example revamp - bring the bot to life again il y a 3 ans
requirements.txt revamp - bring the bot to life again il y a 3 ans

README.md

tg-tipbot

Telegram tip bot.

Setup

# initialize new wallet and retain seed
docker run --rm -it --name wow-wallet-init \
  -v $(pwd)/data:/root \
  lalanza808/wownero \
  wownero-wallet-cli \
    --daemon-address https://node.suchwow.xyz:443 \
    --generate-new-wallet /root/wow \
    --password zzzzzz \

# setup rpc process
docker run --rm -d --name wow-wallet \
  -v $(pwd)/data:/root \
  -p 8888:8888 \
  lalanza808/wownero \
  wownero-wallet-rpc \
    --daemon-address https://node.suchwow.xyz:443 \
    --wallet-file /root/wow \
    --password zzzzzz \
    --rpc-bind-port 8888 \
    --rpc-bind-ip 0.0.0.0 \
    --confirm-external-bind \
    --rpc-login xxxx:yyyy \
    --log-file /root/rpc.log

# install python dependencies
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

# setup secrets in config file outside of git
cp tipbot/config.example.py tipbot/config.py
vim !$

Usage

There are 2 modules in this repo:

  • tipbot - the Telegram bot process
  • admin - management commands

To use them, ensure you're in the virtualenv and run python3 -m tipbot or python3 -m admin

Development

To add more commands, create a new Python file under tipbot/commands; copy another one for an example. Add another import for the command function in tipbot/commands/init.py and add the command to the all_commands dictionary in the same file.