mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2026-06-22 17:34:11 +00:00
Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9b3ce5069e | |||
| f2671ffff3 | |||
| 3974690b90 | |||
| 66b3f8bbd3 | |||
| 140e68dd20 | |||
| 46cf2c250e |
@@ -1,3 +1,8 @@
|
||||
2015-08-12
|
||||
Released 2.5.3
|
||||
telegram.Bot now supports to be unpickled
|
||||
|
||||
|
||||
2015-08-11
|
||||
Released 2.5.2
|
||||
New changes from Telegram Bot API have been applied
|
||||
|
||||
+16
-4
@@ -12,6 +12,10 @@ By `Leandro Toledo <leandrotoledodesouza@gmail.com>`_
|
||||
:target: https://pypi.python.org/pypi/python-telegram-bot
|
||||
:alt: PyPi Package Monthly Download
|
||||
|
||||
.. image:: https://readthedocs.org/projects/python-telegram-bot/badge/?version=latest
|
||||
:target: https://readthedocs.org/projects/python-telegram-bot/?badge=latest
|
||||
:alt: Documentation Status
|
||||
|
||||
.. image:: https://img.shields.io/github/license/leandrotoledo/python-telegram-bot.svg
|
||||
:target: http://www.gnu.org/licenses/lgpl-3.0.html
|
||||
:alt: LGPLv3 License
|
||||
@@ -44,13 +48,15 @@ Table of contents
|
||||
|
||||
- `Getting the code`_
|
||||
|
||||
- `Documentation`_
|
||||
- `Getting started`_
|
||||
|
||||
1. `API`_
|
||||
|
||||
2. `Logging`_
|
||||
|
||||
3. `Examples`_
|
||||
|
||||
4. `Documentation`_
|
||||
|
||||
- `License`_
|
||||
|
||||
@@ -134,9 +140,9 @@ To see other options available, run:
|
||||
|
||||
$ make help
|
||||
|
||||
================
|
||||
_`Documentation`
|
||||
================
|
||||
==================
|
||||
_`Getting started`
|
||||
==================
|
||||
|
||||
View the last release API documentation at: https://core.telegram.org/bots/api
|
||||
|
||||
@@ -239,6 +245,12 @@ Here follows some examples to help you to get your own Bot up to speed:
|
||||
|
||||
- `DevOps Reaction Bot <https://github.com/leandrotoledo/gae-devops-reaction-telegram-bot>`_ sends latest or random posts from `DevOps Reaction <http://devopsreactions.tumblr.com/>`_. Running on `Google App Engine <https://cloud.google.com/appengine>`_ (billing has to be enabled for fully Socket API support).
|
||||
|
||||
================
|
||||
_`Documentation`
|
||||
================
|
||||
|
||||
``python-telegram-bot``'s documentation lives at `Read the Docs <http://python-telegram-bot.readthedocs.org/en/latest/>`_.
|
||||
|
||||
==========
|
||||
_`License`
|
||||
==========
|
||||
|
||||
@@ -15,7 +15,7 @@ def read(*paths):
|
||||
|
||||
setup(
|
||||
name='python-telegram-bot',
|
||||
version='2.5.2',
|
||||
version='2.5.3',
|
||||
author='Leandro Toledo',
|
||||
author_email='leandrotoledodesouza@gmail.com',
|
||||
license='LGPLv3',
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
__author__ = 'leandrotoledodesouza@gmail.com'
|
||||
__version__ = '2.5.2'
|
||||
__version__ = '2.5.3'
|
||||
|
||||
from .base import TelegramObject
|
||||
from .user import User
|
||||
|
||||
+2
-1
@@ -675,4 +675,5 @@ class Bot(TelegramObject):
|
||||
return data
|
||||
|
||||
def __reduce__(self):
|
||||
return (self.__class__, (self.token, self.base_url))
|
||||
return (self.__class__, (self.token,
|
||||
self.base_url.replace(self.token, '')))
|
||||
|
||||
Reference in New Issue
Block a user