mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 07:06:26 +01:00
b76337de87
usage: python -m telegram and copy/paste the output
18 lines
426 B
Python
18 lines
426 B
Python
import sys
|
|
|
|
import urllib3
|
|
import certifi
|
|
import future
|
|
|
|
from . import __version__ as telegram_ver
|
|
|
|
|
|
def print_ver_info():
|
|
print('python-telegram-bot {0}'.format(telegram_ver))
|
|
print('urllib3 {0}'.format(urllib3.__version__))
|
|
print('certifi {0}'.format(certifi.__version__))
|
|
print('future {0}'.format(future.__version__))
|
|
print('Python {0}'.format(sys.version.replace('\n', ' ')))
|
|
|
|
# main
|
|
print_ver_info()
|