We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6afee6e commit b76337dCopy full SHA for b76337d
telegram/__main__.py
@@ -0,0 +1,18 @@
1
+import sys
2
+
3
+import urllib3
4
+import certifi
5
+import future
6
7
+from . import __version__ as telegram_ver
8
9
10
+def print_ver_info():
11
+ print('python-telegram-bot {0}'.format(telegram_ver))
12
+ print('urllib3 {0}'.format(urllib3.__version__))
13
+ print('certifi {0}'.format(certifi.__version__))
14
+ print('future {0}'.format(future.__version__))
15
+ print('Python {0}'.format(sys.version.replace('\n', ' ')))
16
17
+# main
18
+print_ver_info()
0 commit comments