From 3c42bc015e456e41cfef1b674708e1626d33cd4b Mon Sep 17 00:00:00 2001 From: Eldinnie Date: Thu, 14 Feb 2019 15:14:27 +0100 Subject: [PATCH] stable -> latest for rtd --- Making-your-bot-persistent.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Making-your-bot-persistent.md b/Making-your-bot-persistent.md index f1af739..b360090 100644 --- a/Making-your-bot-persistent.md +++ b/Making-your-bot-persistent.md @@ -6,12 +6,12 @@ The persistence structure is designed to make `chat_data`, `user_data` and `Conv ## Included persistence classes three classes concerning persistence in bots have been added. -[BasePersistence](https://python-telegram-bot.readthedocs.io/en/stable/telegram.ext.basepersistence.html) - Is an interface class for persistence classes. If you create your own persistence classes to maintaint a database-connection for example, you must inherit from `BasePersistence` -[PicklePersistence](https://python-telegram-bot.readthedocs.io/en/stable/telegram.ext.picklepersistence.html) - Uses pickle files to make the bot persistent. -[DictPersistence](https://python-telegram-bot.readthedocs.io/en/stable/telegram.ext.dictpersistence.html) - Uses in memory dicts and easy conversion to and from JSON to make the bot persistent. +[BasePersistence](https://python-telegram-bot.readthedocs.io/en/latest/telegram.ext.basepersistence.html) - Is an interface class for persistence classes. If you create your own persistence classes to maintaint a database-connection for example, you must inherit from `BasePersistence` +[PicklePersistence](https://python-telegram-bot.readthedocs.io/en/latest/telegram.ext.picklepersistence.html) - Uses pickle files to make the bot persistent. +[DictPersistence](https://python-telegram-bot.readthedocs.io/en/latest/telegram.ext.dictpersistence.html) - Uses in memory dicts and easy conversion to and from JSON to make the bot persistent. ## 3rd party persistence classes -If you want to create your own persistence class, please carfully read the docs on [BasePersistence](https://python-telegram-bot.readthedocs.io/en/stable/telegram.ext.basepersistence.html). It will tell you what methods you need to overwrite. If you;ve written a persistence class that could be of use to others (e.g. a general one covering all types of data). Please add it below. +If you want to create your own persistence class, please carfully read the docs on [BasePersistence](https://python-telegram-bot.readthedocs.io/en/latest/telegram.ext.basepersistence.html). It will tell you what methods you need to overwrite. If you;ve written a persistence class that could be of use to others (e.g. a general one covering all types of data). Please add it below. ## What do I need to change? To make your bot persistent you need to know the following.