A simple crypto currency bot for our justhold.de telegram group (or private chats!) based on python-telegram-bot and the newest Python 3. The bot uses the coinmarketcap.com API to obtain all data.
Command | Discription | Usage |
---|---|---|
/btc , /sat |
Converts a given Satoshi or BTC amount to Ether | /sat 10000 |
/eth |
Converts a given Ethereum amount to Bitcoin | /eth 0.5 , /eth 2.367 |
/coin |
Shows the current price of one given cryptocurrency. You can either use the symbol (i.e. ETH , BTC ) or the full name |
/coin ethereum , /coin eth |
/top |
Shows the current top crypto currency based on their market cap | /top |
/github |
Displays a link to the GitHub Repository | /github |
/coinflip |
Flips a coin | /coinflip , /coinflip Kopf Zahl |
/help |
Sends a link to the command list | /help |
List to copy for @BotFather:
sat - Converts a given Satoshi or BTC amount to Ether
eth - Converts a given Ethereum amount to Bitcoin
coin - Shows the current price of one given cryptocurrency
top - Shows the current top crypto currency based on their market cap
github - Displays a link to the GitHub Repository
coinflip - Flips a coin
help - Sends a link to the command list
Either run it directly via python3 main.py
or use systemd. An example for a systemd service can be found at telegram.service.example
:
[Unit]
Description=Telegram Crypto Bot
After=multi-user.target
[Service]
WorkingDirectory=/home/eddy/telegram_bot
User=eddy
Group=eddy
ExecStart=/usr/bin/python3.6 /home/eddy/telegram_bot/main.py
Type=idle
Restart=on-failure
RestartSec=15
TimeoutStartSec=15
[Install]
WantedBy=multi-user.target
Copy config.example.py
to config.py
and add your Telegram API token from your bot. If you are in a weird country called Germany, you maybe want to change __LOCALE_BILLION__
to Mia.
instead.
__TOKEN__ = 'tspOGQiAoEqdEEEBzinmhJg4VuvenEzKiH39NzsZQqDDq'
__LOCALE_BILLION__ = 'bil.'
__ADMINS__ = [369613251,]
Don't forget to allow groups at @BotFather if you want to add the bot to groups.
python>=3.6.0
python-telegram-bot
requests
tzlocal
ETH: 0x461Dd7eF913d932EAA3efF34a4Fb39522fC76f17
MIT License
Copyright (c) 2017 - 2018 Eduard Nikoleisen <Der-Eddy>
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.