Giter Site home page Giter Site logo

endogen / opencryptobot Goto Github PK

View Code? Open in Web Editor NEW
115.0 10.0 57.0 13.67 MB

Telegram bot to access various information about crypto-currencies

License: GNU Affero General Public License v3.0

Python 99.98% Shell 0.02%
crypto information telegram bot coin currency whale python3

opencryptobot's Introduction

OpenCryptoBot

Welcome to the Swiss Army knife for crypto! OpenCryptoBot is an open source Telegram bot written in Python and you can add this bot directly or add him by searching for user @OpenCryptoBot on Telegram.

If you are interested in news regarding this bot or want more indept explanations for all available commands, please visit the homepage.

Overview

This Python script is a polling based Telegram bot. Webhook mode is implemented but untested.

General bot features

  • Written in Python and fully open source
  • Update notifications for new releases on GitHub
  • Update your running bot to any release or branch
  • Admin specific commands like restart and shutdown
  • Every command is a plugin that can be enabled / disabled
  • Custom rate limit per user or per user and command
  • Use database to track usage or disable it all together
  • Cache functionality (can be disabled)
  • Run the bot locally or hosted on a server
  • Powerful logging functionality
  • Set up the bot by using command line arguments
  • Bot can be administered by more then one user
  • Data provided by seven different API providers
  • BPMN diagrams for commands to understand the data flow
  • Users can provide feedback about the bot
  • Experimental inline-mode (only price command for now)
  • Repeatedly send commands at specified time interval

Command features

  • Current price
  • Price change over time
  • Current and historical volume
  • Market capitalization
  • Candlestick charts
  • Price and volume charts
  • All Time High details
  • Calculated value of coin quantity
  • Find out where to buy a coin
  • Sort trading pairs by volume
  • Details about the team behind a coin
  • Details about the people in a team
  • Coin-specific news or filtered by keywords
  • Return on Investment for a coin
  • Details about ICO if there was one
  • Whitepaper download
  • Best and worst movers
  • Compare different coins
  • Google Trends chart for keywords
  • Description for a coin
  • Details about exchanges and toplist
  • Details about coin development
  • Social media links and stats
  • Get a coin summary
  • Global dominance, volume and market cap
  • Coin logo and technical coin details
  • Search for a coin by name
  • Get latest Tweets from Twitter for a coin

Configuration

This part is only relevant if you want to host this bot yourself. If you just want to use the bot, add user @OpenCryptoBot to your Telegram contacts.

Before starting up the bot you have to take care of some settings and add some API tokens. All configuration files or token files are located in the conf folder.

config.json

This file holds the configuration for the bot. You have to at least edit the value for admin_id. Every else setting is optional.

  • admin_id: This is a list of Telegram user IDs that will control the bot. You can just add your own user or multiple users if you want. If you don't know your Telegram user ID, get in a conversation with Telegram bot @userinfobot and if you write him he will return you your user ID.
  • telegram - read_timeout: Read timeout in seconds as integer. Default Telegram value is about 5 seconds. Usually this value doesn't have to be changed.
  • telegram - connect_timeout: Connect timeout in seconds as integer. Default Telegram value is about 5 seconds. Usually this value doesn't have to be changed.
  • webhook - listen: Required for webhook mode. IP to listen to.
  • webhook - port: Required for webhook mode. Port to listen on.
  • webhook - privkey_path: Required for webhook mode. Path to private key (.pem file).
  • webhook - cert_path: Required for webhook mode. Path to certificate (.pem file).
  • webhook - url: Required for webhook mode. URL where the bot is hosted.
  • use_db: If true then a new database file (SQLite) will be generated on first start and every usage of the bot will be recorded in this database. If false, no database will be used.
  • rate_limit - enabled: If true then a rate limit for users will be activated so that only a specific number of requests in a specific timeframe are possible. If false then rate limit functionality will be disabled.
  • rate_limit - requests: Number (integer) of API requests that are allowed for a specific timeframe (see rate_limit - timespan).
  • rate_limit - timespan: Number (integer) of seconds for which the issued API requests will be counted. If the count exceeds the value in rate_limit - requests, the user will be informed and can not issue new requests until the timeframe is reached.
  • rate_limit - incl_cmd: If true then the rate limit will be per command. If false then it doesn't matter which command you used. If you exceed the limit you can't issue any API calls anymore until the timeframe is over.
  • refresh_cache: If null then caching is disabled and every API call will reach the API provider. It's highly recommanded to enabled caching. The timeframe to refresh the cache can be specified in seconds s or minutes m or hours h or days d. Example: 6h.
  • update - github_user: Only relevant if you want to provide your own updates. The GitHub username.
  • update - github_repo: Only relevant if you want to provide your own updates. The GitHub repository that you want to do the updates from.
  • update - update_hash: This should not be changed. The bot saves here the hash of the currently running bot (only if an update happened).
  • update - update_hash: How ofter should the bot automatically check for updates? The timeframe can be specified in seconds s or minutes m or hours h or days d. Example: 1d. To disable update checks, enter null.

bot.token

This file holds the Telegram bot token. You have to provide one and you will get it in a conversation with Telegram user @BotFather while registering your bot.

cryptopanic.token

This file is optional and only needed if you use the news plugin. News are requested from http://cryptopanic.com and thus you have to register an account there and get you API token and enter it in here.

Starting

In order to run the bot you need to execute some Python code. If you don't have any idea where to host the bot, take a look at Where to host Telegram Bots. But services like Heroku (free) will work fine too. You can also run the script locally on your own computer for testing purposes.

Prerequisites

Python version

You have to use at least Python 3.7 to execute the scripts. Everything else is not supported.

Installing needed modules from Pipfile

Install all needed Python modules automatically with Pipenv. You have to be in the root folder of the bot - on the same level as the Pipfile:

pipenv install
Installing needed modules from requirements.txt

This is an alternative way to install all needed Python modules. If done this way, every installed module will be available for every other Python script you run. Installing modules globally is only recommanded if you know what you are doing:

  1. Generate requirements.txt from Pipfile
pipenv lock -r
  1. Install all needed Python modules
pip3 install -r requirements.txt
Installing orca

After you installed the modules, you also have to install orca if you want to use the candlestick plugin or the chart plugin (because Plotly is used to generate the static charts and orca is a dependency for static image generation under Plotly). For more info check out Plotly Static Image Export

If you get error xvfb-run: error:Xvfb failed to start please execute:

xvfb-run -a /path/to/orca "$@"

Starting

  1. First you have to make the script run.sh executable with
chmod +x run.sh
  1. If you installed the needed Python modules via Pipfile you have to execute the following in the root folder of the bot:
pipenv run ./run.sh &

If you installed the modules globally:

./run.sh &

Stopping

The recommanded way to stop the bot is the bot command /shutdown. If you don't want or can't use this, you can shut the bot down with:

pkill python3.7

which will kill every Python 3.7 process that is currently running.

Usage

If you configured the bot correctly and execute it, the bot will check for updates (if enabled in config.json) and notify you if a new release is available. Please ignore the update if you purposely downloaded the newest version from the master branch because the bot will only notify you about releases. And in this case the release will be older then the current version from the master branch.

Available commands

Charts
/c - Chart with price and volume
/cs - Candlestick chart for coin
Price
/51 - PoW 51% attack cost
/ath - All time high price for coin
/best - Best movers for hour or day
/ch - Price change over time
/ico - ICO info for coin
/p - Coin price
/roi - Return on Investment for a coin
/s - Price, market cap and volume
/v - Value of coin quantity
/worst - Worst movers for hour or day
General
/comp - Compare coins
/de - Show decentralization info
/des - Coin description
/dev - Development information
/ex - Exchange details and toplist
/g - Global crypto data
/i - General coin information
/m - Find exchanges to trade a coin
/pe - Info about person from a team
/re - Repeat any command periodically
/se - Search for symbol by coin name
/t - Info about team behind a coin
/top - List top 30 coins
/tr - Google Trends - Interest Over Time
/wp - Find whitepaper for a coin
News & Events
/ev - Show crypto events
/n - News about a coin
/soc - Social media details
/tw - Latest Tweets from Twitter
Utilities
/po - Info about mining pools
/wa - Details about wallets
Bot
/about - Information about bot
/bpmn - BPMN diagram for a command
/feedback - Send us your feedback
/man - Show how to use a command
/re - Repeat any command periodically

If you want to show a list of available commands as you type, open a chat with Telegram user @BotFather and send the command /setcommands. Then choose the bot you want to activate the list for and after that send the list of commands with description. Something like this:

51 - PoW 51% attack cost
about - Information about bot
ath - All time high price for coin
best - Best movers for hour or day
bpmn - BPMN diagram for a command
c - Chart with price and volume
ch - Price change over time
comp - Compare coins
cs - Candlestick chart for coin
de - Show decentralization info
des - Coin description
dev - Development information
ev - Show crypto events
ex - Exchange details and toplist
feedback - Send us your feedback
g - Global crypto data
h - Show overview of all commands
i - General coin information
ico - ICO info for coin
m - Find exchanges to trade a coin
man - Show how to use a command
mc - Market capitalization
n - News about a coin
p - Coin price
pe - Info about person from a team
po - Info about mining pools
re - Repeat any command periodically
roi - Return on Investment for a coin
s - Price, market cap and volume
se - Search for symbol by coin name
soc - Social media details
t - Info about team behind a coin
top - List top 30 coins
tr - Google Trends - Interest Over Time
tw - Get newest tweets for coin
v - Value of coin quantity
vol - Volume for a coin
wa - Details about wallets
worst - Worst movers for hour or day
wp - Find whitepaper for a coin

Development

I am actively developing this bot and will do so also in the near future. If you would like to help out with development, send a message via Telegram to @endogen or open an issue here at GitHub.

Todo

Priority 1
  • Add alerts for prices
Priority 2
  • Add maintenance mode
  • Ban user if rate limit exceeded to often
Priority 3
  • Provide BPMN diagrams for all commands

Disclaimer

I use this bot personally to check the current state of some coins but since all the data is relying on external APIs, i can't guarantee that all informations are correct. Please use with caution. I can't be held responsible for anything!

Donating

If you find OpenCryptoBot suitable for your needs, please consider donating whatever amount you like to:

Bitcoin

1EoBYmfdJznJ21v8Uiiv44iJ2sDb6Bsqc1

Bitcoin Cash

qzken7mgslv0w9t4ycj4uganv66ljccsq5ngcepp6h

Ethereum (ETH)

0x15c3dB6f0f3cC3A187Cfa4b20605293a08b9Be46

Monero (XMR)

42eSjjHF63P3LtxcdeC71TT3ZCcGbTtk1aESTvfrz4VqYeKMFP9tbWhjmcUJZE3yVrgDjH8uZhnob9czCtm764cFDWYPe7c

How else can you support me?

If you can't or don't want to donate, please consider signing up on listed exchanges below. They are really good and by using these links to register an account i get a share of the trading-fee that you pay to the exchange if you execute a trade.

opencryptobot's People

Contributors

dependabot[bot] avatar endogen avatar fcoagz avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

opencryptobot's Issues

Error

I was all good before today. But now I got an error when I was trying to start the BOT. Here it is:

Traceback (most recent call last): File "/root/.local/share/virtualenvs/OpenCryptoBot-GE5fekD8/lib/python3.7/site-packages/telegram/ext/jobqueue.py", line 245, in tick job.run(self.bot) File "/root/.local/share/virtualenvs/OpenCryptoBot-GE5fekD8/lib/python3.7/site-packages/telegram/ext/jobqueue.py", line 372, in run self.callback(bot, self) File "/root/OpenCryptoBot/opencryptobot/api/apicache.py", line 23, in refresh APICache.refresh_coinmarketcap_coin_list() File "/root/OpenCryptoBot/opencryptobot/api/apicache.py", line 39, in refresh_coinmarketcap_coin_list APICache.cmc_coin_list = Market().listings()["data"] TypeError: 'JSONDecodeError' object is not subscriptable

Is this still working? Receiving JSONDecodeErrors on any token

Exception in thread Thread-59: Traceback (most recent call last): File "C:\Users\xxxx\AppData\Local\Programs\Python\Python37-32\Lib\threading.py", line 917, in _bootstrap_inner self.run() File "C:\Users\xxxx\AppData\Local\Programs\Python\Python37-32\Lib\threading.py", line 865, in run self._target(*self._args, **self._kwargs) File "I:\xxxxx\OpenCryptoBot-master\opencryptobot\plugins\chart.py", line 225, in _get_cmc_coin_id for listing in APICache.get_cmc_coin_list(): File "I:\xxxxx\OpenCryptoBot-master\opencryptobot\api\apicache.py", line 66, in get_cmc_coin_list return Market().listings()["data"] TypeError: 'JSONDecodeError' object is not subscriptable

The above error occurs with any coin check, even BTC.

Setup

Hi there,

I just saw your repo here and I was wondering if you have a little guide as well? I already looked into the code, added my telegram token etc. What file do I need to execute to start the bot?

Thanks for your help!

Unable to run the bot properly

  • the pip is out of date
    The python-telegram-bot version to be specific.
  • the API errors out frequently (possibly I'm doing something wrong)
    image
  • good config, what you don't need, simply don't add the entry for the same (but writing about this in the repo might help guide users)
  • I'm unable to run this bot with stability, it does run but maybe missing elements and errors being thrown or commands not working with no errors

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.